forked from jumpsuit/jumpstate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (63 loc) · 1.58 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
{
"name": "jumpstate",
"version": "2.2.3",
"description": "A dead-simple state machine for Redux and Vanilla JS",
"license": "MIT",
"homepage": "https://github.com/jumpsuit/jumpstate#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/jumpsuit/jumpstate.git"
},
"keywords": [
"jumpsuit",
"state",
"redux",
"react"
],
"preferGlobal": false,
"main": "lib/index.js",
"files": [
"lib/",
"jumpstate.js",
"LICENSE",
"README.md"
],
"scripts": {
"test:lint": "standard --verbose | snazzy",
"test:unit": "jest --coverage",
"test": "npm-run-all -c test:*",
"build:node": "rm -rf lib && babel src -d lib --no-comments",
"build:umd": "rm -rf jumpstate.js && browserify lib/index.js -s jumpstate -tg uglifyify -o jumpstate.js",
"watch": "npm run build:node -- -w -s",
"prepublish": "npm-run-all build:*"
},
"devDependencies": {
"babel-cli": "6.14.0",
"babel-eslint": "6.1.2",
"babel-jest": "^17.0.0",
"babel-preset-es2015": "6.14.0",
"babel-preset-react": "6.11.1",
"babel-preset-stage-2": "6.13.0",
"browserify": "13.1.0",
"jest": "^17.0.0",
"npm-run-all": "3.1.0",
"redux": "^3.6.0",
"snazzy": "5.0.0",
"standard": "^8.0.0",
"uglifyify": "3.0.3"
},
"standard": {
"parser": "babel-eslint",
"ignore": [
"lib",
"jumpstate.js",
"examples"
]
},
"typings": "./index.d.ts",
"bugs": {
"url": "https://github.com/jumpsuit/jumpstate/issues"
},
"dependencies": {},
"author": "Tanner Linsley <[email protected]>"
}