-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
42 lines (42 loc) · 1.09 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
{
"name": "query-ast",
"version": "1.0.5",
"description": "A library to traverse/modify an AST",
"main": "dist/index.js",
"license": "BSD-3-Clause",
"repository": {
"type": "git",
"url": "git@github.com:salesforce-ux/query-ast.git"
},
"bugs": {
"url": "https://github.com/salesforce-ux/query-ast/issues"
},
"homepage": "https://github.com/salesforce-ux/query-ast",
"scripts": {
"start": "node lib/index.js",
"test": "mocha lib/**/*.js test/**/*.js --reporter min --recursives",
"lint": "standard",
"build": "babel lib --out-dir dist --presets es2015",
"doc": "jsdoc -c jsdoc.json && mv doc/query-ast/* doc/ && rm -rf doc/query-ast",
"prepublish": "npm run build"
},
"dependencies": {
"invariant": "2.2.4",
"lodash": "^4.17.21"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-preset-es2015": "^6.24.1",
"chai": "^4.2.0",
"jsdoc": "^3.6.7",
"minami": "1.2.3",
"mocha": "^7.1.1",
"scss-parser": "^1.0.5",
"standard": "^14.3.1"
},
"standard": {
"ignore": [
"node_modules/**/*"
]
}
}