-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 1.7 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
{
"name": "cst",
"version": "0.4.10",
"description": "JavaScript CST Implementation",
"author": "Marat Dulin",
"repository": {
"type": "git",
"url": "https://github.com/cst/cst"
},
"bugs": {
"url": "https://github.com/cst/cst/issues"
},
"maintainers": [
"Henry Zhu <[email protected]>",
"Oleg Gaidarenko <[email protected]>"
],
"license": "MIT",
"main": "lib/index.js",
"scripts": {
"test": "npm run lint && npm run test:unit",
"test:unit": "mocha",
"test:live": "mocha --watch",
"test:benchmark": "babel-node test/benchmarks/benchmarks.js",
"watch": "gaze 'npm run build' 'src/**/*.js'",
"lint": "eslint src test",
"flow": "flow check",
"build": "babel src -d lib --source-maps",
"precommit": "npm test",
"release": "npm run build && npm publish",
"postpublish": "rm -Rf lib"
},
"devDependencies": {
"babel-cli": "^6.6.5",
"babel-helper-fixtures": "^6.18.2",
"babel-eslint": "~7.0.0",
"babel-plugin-transform-class-properties": "^6.6.0",
"babel-plugin-transform-flow-strip-types": "^6.7.0",
"babel-plugin-transform-object-rest-spread": "^6.6.5",
"babel-plugin-transform-runtime": "^6.9.0",
"babel-preset-es2015": "^6.6.0",
"babel-register": "^6.9.0",
"benchmark": "^2.1.0",
"chai": "^3.5.0",
"chalk": "^1.1.1",
"eslint": "~3.8.1",
"eslint-config-google": "~0.7.0",
"eslint-plugin-flowtype": "~2.25.0",
"gaze-cli": "^0.2.0",
"husky": "^0.11.4",
"lodash.foreach": "^4.5.0",
"lodash.get": "^4.4.2",
"mocha": "^3.1.2"
},
"dependencies": {
"babel-runtime": "^6.9.2",
"babylon": "^6.8.1",
"source-map-support": "^0.4.0"
},
"files": [
"lib"
]
}