forked from jsonmaur/jumpsuit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
88 lines (88 loc) · 2.14 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
{
"name": "jumpsuit",
"version": "2.1.1",
"description": "Jump in. Zip up. Build great apps.",
"license": "MIT",
"homepage": "https://github.com/jumpsuit/jumpsuit#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/jumpsuit/jumpsuit.git"
},
"keywords": [
"framework",
"react",
"redux",
"react-router",
"spa",
"front-end"
],
"preferGlobal": false,
"main": "lib/index.js",
"files": [
"assets/",
"bin/",
"lib/",
"jumpsuit.js",
"LICENSE",
"README.md"
],
"scripts": {
"test": "npm-run-all test:*",
"test:lint": "standard --verbose | snazzy",
"build": "rm -rf lib && babel src -d lib --no-comments",
"watch": "npm run build -- -w -s",
"docs:clean": "rm -r -f docs",
"docs:prepare": "gitbook install && cp -r assets/ documentation/assets && cp README.md documentation/README.md",
"docs:watch": "npm run docs:prepare && gitbook serve",
"docs": "npm run docs:clean && npm run docs:prepare && gitbook build . docs && cp CNAME docs/CNAME",
"prepublish": "npm run build"
},
"dependencies": {
"jumpstate": "^2.2.0",
"pouchdb-browser": "^6.1.1",
"query-string": "4.2.3",
"react-redux": "^4.0.0",
"react-router": "^3.0.0",
"react-router-redux": "^4.0.5",
"redux": "^3.6.0",
"redux-devtools": "^3.3.1",
"redux-devtools-dock-monitor": "^1.1.1",
"redux-devtools-log-monitor": "^1.0.11"
},
"peerDependencies": {
"react": "^15.0.0",
"react-dom": "^15.0.0"
},
"devDependencies": {
"gitbook-cli": "^2.3.0",
"babel-cli": "6.14.0",
"babel-eslint": "6.1.2",
"babel-preset-es2015": "6.14.0",
"babel-preset-react": "6.11.1",
"babel-preset-stage-2": "6.13.0",
"browserify": "13.1.0",
"npm-run-all": "3.1.0",
"react": "^15.0.0",
"react-dom": "^15.0.0",
"snazzy": "5.0.0",
"standard": "8.0.0",
"uglifyify": "3.0.3"
},
"standard": {
"parser": "babel-eslint",
"ignore": [
"lib",
"jumpsuit.js",
"documentation",
"docs",
"examples"
]
},
"babel": {
"presets": [
"es2015",
"stage-2",
"react"
]
}
}