forked from babel/babylon
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
34 lines (34 loc) · 945 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
{
"name": "babylon",
"version": "6.7.0",
"description": "A JavaScript parser",
"author": "Sebastian McKenzie <sebmck@gmail.com>",
"homepage": "https://babeljs.io/",
"license": "MIT",
"repository": "https://github.com/babel/babylon",
"main": "lib/index.js",
"dependencies": {
"babel-runtime": "^6.0.0"
},
"devDependencies": {
"ava": "^0.12.0",
"babel-cli": "^6.0.0",
"babel-helper-fixtures": "^6.6.5",
"babel-plugin-transform-class-properties": "^6.6.0",
"babel-plugin-transform-runtime": "^6.0.0",
"babel-preset-es2015": "^6.0.0",
"babel-preset-react": "^6.0.0",
"babel-preset-stage-0": "^6.5.0",
"kcheck": "^2.0.1",
"lodash": "^4.6.1"
},
"bin": {
"babylon": "./bin/babylon.js"
},
"scripts": {
"test": "npm run build && npm run lint && ava test/",
"lint": "kcheck",
"build": "babel src --out-dir lib",
"watch": "babel src --out-dir lib --watch"
}
}