-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1020 Bytes
/
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
43
{
"name": "astx",
"version": "0.0.1",
"description": "query JavaScript ASTs via xpath",
"main": "dist/index.js",
"scripts": {
"test": "ava",
"build": "babel src -d dist",
"prepublish": "npm run build"
},
"author": "Amanvir Sangha <[email protected]> (https://amanvir.io)",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/amanvir/mental.git"
},
"devDependencies": {
"ava": "^0.17.0",
"babel-cli": "^6.18.0",
"babel-preset-env": "^1.1.4",
"babel-register": "^6.18.0",
"eslint": "^3.12.2",
"eslint-config-standard": "^11.0.0",
"eslint-plugin-import": "^2.9.0",
"eslint-plugin-node": "^6.0.1",
"eslint-plugin-promise": "^3.6.0",
"eslint-plugin-standard": "^3.0.1"
},
"presets": [
"env"
],
"ava": {
"require": "babel-register",
"babel": "inherit"
},
"dependencies": {
"cherow": "^1.3.8",
"json2xml": "^0.1.3",
"npm": "^5.7.1",
"xmldom": "^0.1.27",
"xpath": "0.0.27"
}
}