UNPKG

1.09 kBJSONView Raw
1{
2 "name": "@buxlabs/ast",
3 "version": "0.7.0",
4 "description": "abstract syntax tree class for js",
5 "main": "index.js",
6 "scripts": {
7 "test": "ava \"test/spec/basic.js\"",
8 "coverage": "nyc --check-coverage --statements 100 --lines 100 --functions 100 --branches 100 npm test",
9 "benchmark": "ava \"test/spec/benchmark.js\""
10 },
11 "repository": {
12 "type": "git",
13 "url": "git+https://github.com/buxlabs/ast.git"
14 },
15 "keywords": [
16 "ast",
17 "javascript",
18 "abstract syntax tree"
19 ],
20 "author": "Emil Ajdyna <emil@ajdyna.com>",
21 "license": "MIT",
22 "bugs": {
23 "url": "https://github.com/buxlabs/ast/issues"
24 },
25 "files": [
26 "index.js"
27 ],
28 "homepage": "https://github.com/buxlabs/ast#readme",
29 "devDependencies": {
30 "ava": "^0.21.0",
31 "benchmark": "^2.1.4",
32 "nyc": "^11.0.3"
33 },
34 "dependencies": {
35 "astq": "^2.0.2",
36 "comparify": "^0.2.0",
37 "escodegen": "^1.8.1",
38 "espree": "^3.4.3",
39 "esquery": "^1.0.0",
40 "estemplate": "^0.5.1",
41 "estraverse": "^4.2.0",
42 "prettier": "^1.5.3",
43 "to-ast": "^1.0.0"
44 }
45}