UNPKG

1.06 kBJSONView Raw
1{
2 "name": "@buxlabs/ast",
3 "version": "0.5.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 "comparify": "0.2.0",
36 "escodegen": "1.8.1",
37 "espree": "3.4.3",
38 "esquery": "1.0.0",
39 "estemplate": "0.5.1",
40 "estraverse": "4.2.0",
41 "js-beautify": "1.6.14",
42 "to-ast": "1.0.0"
43 }
44}