-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.44 KB
/
Copy pathpackage.json
File metadata and controls
61 lines (61 loc) · 1.44 KB
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
{
"name": "jumpstate",
"version": "2.2.2",
"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/priezz/jumpstate.git"
},
"keywords": [
"jumpsuit",
"state",
"redux",
"react"
],
"preferGlobal": false,
"main": "lib/index.js",
"files": [
"lib/",
"index.d.ts",
"LICENSE",
"README.md"
],
"scripts": {
"test:lint": "standard --verbose | snazzy",
"test:unit": "jest --coverage",
"test": "npm-run-all -c test:*",
"build": "rm -rf lib && babel src -d lib --no-comments",
"watch": "npm run build -- -w -s",
"prepublish": "npm run build",
"prepare": "npm run 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",
"redux": "^3.6.0",
"snazzy": "5.0.0",
"standard": "^8.0.0",
"uglifyify": "3.0.3"
},
"standard": {
"parser": "babel-eslint",
"ignore": [
"lib",
"examples"
]
},
"typings": "./index.d.ts",
"bugs": {
"url": "https://github.com/jumpsuit/jumpstate/issues"
},
"dependencies": {},
"author": "Tanner Linsley <tannerlinsley@gmail.com>"
}