-
Notifications
You must be signed in to change notification settings - Fork 18
/
package.json
65 lines (65 loc) · 1.66 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
63
64
65
{
"name": "stc",
"description": "The fastest workflow",
"version": "2.0.14",
"author": {
"name": "welefen",
"email": "[email protected]"
},
"scripts": {
"test": "ava test/",
"test-cov": "istanbul cover ./node_modules/mocha/bin/_mocha -- -t 50000 --recursive -R spec test/",
"compile": "babel --presets es2015-loose,stage-1 --plugins transform-runtime src/ --out-dir lib/ --source-maps",
"watch-compile": "npm run compile -- --watch",
"watch": "npm run watch-compile",
"prepublish": "npm run compile",
"eslint": "eslint src/"
},
"contributors": [
{
"name": "welefen",
"email": "[email protected]"
}
],
"main": "lib/index.js",
"dependencies": {
"babel-generator": "^6.9.0",
"babylon": "^6.8.0",
"bluebird": "^3.4.0",
"debug": "^2.2.0",
"flkit": "3.x.x",
"source-map-support": "^0.4.0",
"stc-cache": "1.x.x",
"stc-cluster": "1.x.x",
"stc-dep-parser": "1.x.x",
"stc-file": "1.x.x",
"stc-helper": "1.x.x",
"stc-log": "1.x.x",
"stc-plugin": "1.x.x",
"stc-plugin-invoke": "1.x.x"
},
"devDependencies": {
"ava": "^0.14.0",
"babel-cli": "6.7.7",
"babel-core": "6.x.x",
"babel-eslint": "6.x.x",
"babel-plugin-transform-runtime": "6.x.x",
"babel-preset-es2015": "6.x.x",
"babel-preset-es2015-loose": "7.0.0",
"babel-preset-stage-1": "6.x.x",
"eslint": "2.8.0",
"istanbul": "0.4.0"
},
"keywords": [],
"repository": {
"type": "git",
"url": "https://github.com/stcjs/stc"
},
"engines": {
"node": ">=4.0.0"
},
"readmeFilename": "README.md",
"bugs": {
"url": "https://github.com/stcjs/stc/issues"
}
}