-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
96 lines (96 loc) · 2.16 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
{
"name": "redux-sutro",
"version": "1.0.4",
"description": "Dead simple redux integration for sutro",
"main": "dist/index.js",
"keywords": [
"shasta",
"shastajs",
"redux",
"sutro",
"generate",
"actions",
"shastaplugin"
],
"repository": {
"type": "git",
"url": "git+https://github.com/shastajs/redux-sutro.git"
},
"author": "Contra <[email protected]> (http://contra.io)",
"license": "MIT",
"bugs": {
"url": "https://github.com/shastajs/redux-sutro/issues"
},
"homepage": "https://github.com/shastajs/redux-sutro#readme",
"files": [
"dist"
],
"scripts": {
"preversion": "npm run clean && npm run build",
"build": "babel src --out-dir dist",
"clean": "rimraf dist",
"lint": "eslint src",
"test": "npm run-script lint && mochify --transform babelify --recursive --reporter spec"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-eslint": "^8.2.2",
"babel-loader": "^7.1.3",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-plugin-transform-runtime": "^6.4.3",
"babel-preset-es2015": "^6.3.13",
"babel-preset-es2015-loose": "^8.0.0",
"babel-preset-react": "^6.3.13",
"babel-preset-stage-0": "^6.3.13",
"babel-register": "^6.26.0",
"babelify": "^8.0.0",
"eslint": "^4.18.1",
"eslint-cli": "^1.1.1",
"eslint-config-rackt": "^1.1.1",
"eslint-plugin-react": "^7.7.0",
"mochify": "^5.0.0",
"rimraf": "^2.6.2",
"should": "^13.0.0"
},
"babel": {
"presets": [
"es2015",
"react",
"stage-0"
],
"plugins": [
"transform-runtime",
"add-module-exports"
]
},
"eslintConfig": {
"parser": "babel-eslint",
"extends": "rackt",
"plugins": [
"react"
],
"env": {
"browser": true,
"node": true,
"es6": true
},
"globals": {
"__DEV__": true,
"__PROD__": true,
"__INITIAL_STATE__": true
},
"rules": {
"semi": [
2,
"never"
]
}
},
"dependencies": {
"babel-runtime": "^6.11.6",
"tahoe": "^1.0.15",
"template-url": "^1.0.0",
"url-join": "^4.0.0"
}
}