-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
68 lines (68 loc) · 1.77 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
{
"name": "@youzan/marx",
"version": "0.5.0",
"description": "我是马克思,你们的精神领袖。",
"scripts": {
"build:mkdir": "mkdir base filter middleware || true",
"build:compiler": "ls src | sed 's/\\s+/\\n/g' | xargs -t -I {} babel src/{} --out-dir ./{}",
"build": "npm run build:mkdir && npm run build:compiler",
"prepublish": "npm run build"
},
"bin": {
"marx": "./bin/marx.js"
},
"author": "Raphael",
"license": "ISC",
"dependencies": {
"@youzan/superman": "~0.6.4",
"babel-cli": "~6.23.0",
"babel-core": "~6.23.1",
"babel-plugin-transform-decorators-legacy": "~1.3.4",
"babel-plugin-transform-object-rest-spread": "~6.23.0",
"babel-plugin-transform-runtime": "~6.23.0",
"babel-polyfill": "~6.23.0",
"babel-preset-env": "~1.2.1",
"babel-register": "~6.23.0",
"blessed": "~0.1.81",
"blessed-contrib": "~4.7.5",
"bunyan": "~1.8.5",
"chalk": "~1.1.3",
"commander": "~2.9.0",
"koa-body": "~1.6.0",
"koa-convert": "~1.2.0",
"koa-generic-session": "~1.11.4",
"koa-redis": "~2.1.3",
"koa-router": "~7.0.1",
"koa-static": "~2.0.0",
"npm-run-all": "~4.0.1",
"nunjucks": "~3.0.0",
"through2": "~2.0.3",
"ua-parser-js": "~0.7.13",
"vinyl-fs": "~2.4.4"
},
"devDependencies": {
"babel-eslint": "~7.1.1",
"eslint": "~3.15.0",
"eslint-config-airbnb": "~14.1.0",
"eslint-plugin-import": "~2.2.0",
"eslint-plugin-jsx-a11y": "~4.0.0",
"eslint-plugin-react": "~6.9.0"
},
"babel": {
"presets": [
[
"env",
{
"targets": {
"node": 6.9
}
}
]
],
"plugins": [
"transform-runtime",
"transform-decorators-legacy",
"transform-object-rest-spread"
]
}
}