-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
107 lines (107 loc) · 2.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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
{
"name": "esbox",
"description": "ES.next in a box",
"version": "0.9.2",
"ava": {
"files": "dist/test/**/*.test.js",
"source": [
"dist/lib/**/*.js",
"fixture/**/*.js"
]
},
"bin": {
"esbox": "dist/lib/cli.js"
},
"dependencies": {
"ansi-escapes": "^1.4.0",
"async": "^2.0.0-rc.6",
"babel-polyfill": "^6.9.1",
"babel-preset-es2015": "^6.9.0",
"babel-preset-es2015-node4": "^2.1.0",
"babel-preset-es2015-node5": "^1.2.0",
"babel-preset-react": "^6.11.1",
"babel-preset-stage-0": "^6.5.0",
"babel-register": "^6.9.0",
"bluebird": "^3.4.1",
"builtin-modules": "^1.1.1",
"chai": "^3.5.0",
"chalk": "^1.1.3",
"cheerio": "^0.20.0",
"cli-color": "^1.1.0",
"cli-table": "^0.3.1",
"co": "^4.6.0",
"connect": "^3.4.1",
"d3": "^4.1.0",
"debug": "^2.2.0",
"del": "^2.2.1",
"execa": "^0.4.0",
"express": "^4.14.0",
"figures": "^1.7.0",
"find-up": "^1.1.2",
"glob": "^7.0.5",
"gulp": "^3.9.1",
"handlebars": "^4.0.5",
"immutable": "^3.8.1",
"is-absolute": "^0.2.5",
"isomorphic-fetch": "^2.2.1",
"jade": "^1.11.0",
"koa": "^1.2.0",
"lodash": "^4.13.1",
"markdown-it": "^7.0.0",
"minimatch": "^3.0.2",
"minimist": "^1.2.0",
"mobx": "^2.3.4",
"moment": "^2.14.1",
"opn": "^4.0.2",
"path-exists": "^3.0.0",
"pretty-hrtime": "^1.0.2",
"progress": "^1.1.8",
"react": "^15.2.0",
"react-dom": "^15.2.0",
"redux": "^3.5.2",
"redux-thunk": "^2.1.0",
"request": "^2.72.0",
"resolve-from": "^2.0.0",
"sander": "^0.5.1",
"sane": "^1.4.0",
"semver": "^5.2.0",
"sinon": "^1.17.4",
"socket.io": "^1.4.8",
"stack-trace": "0.0.9",
"subdir": "0.0.3",
"through2": "^2.0.1",
"underscore": "^1.8.3",
"update-notifier": "^1.0.2",
"webpack": "^1.13.1",
"yosay": "^1.2.0"
},
"devDependencies": {
"ava": "^0.15.2",
"babel-cli": "^6.10.1",
"babel-eslint": "^6.1.0",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"eslint": "^3.0.0",
"eslint-config-airbnb": "^9.0.1",
"eslint-plugin-babel": "^3.3.0",
"eslint-plugin-import": "^1.10.2",
"eslint-plugin-jsx-a11y": "^1.5.3",
"eslint-plugin-react": "^5.2.2",
"rimraf": "^2.5.3"
},
"engines": {
"node": ">=0.12"
},
"files": [
"dist/lib"
],
"license": "MIT",
"repository": "callumlocke/esbox",
"scripts": {
"build": "rimraf dist && babel src --out-dir dist --source-maps",
"build:watch": "rimraf dist && babel src --out-dir dist --watch --source-maps",
"lint": "eslint .",
"prepublish": "npm run build",
"test": "npm run lint && ava",
"test:watch": "ava --watch"
}
}