-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathpackage.json
55 lines (55 loc) · 1.46 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
{
"name": "redux-dsm",
"version": "3.0.3",
"description": "Declarative State Machines for Redux",
"main": "./distribution/dsm.js",
"directories": {
"doc": "docs"
},
"scripts": {
"lint": "eslint . && echo 'Lint finished...\n'",
"posttest": "npm run -s lint && node tools/cli.js",
"test": "node -r @std/esm source/test/index.js && node -r @std/esm source/test/authenticate-flow-test.js",
"debug": "node -r @std/esm --inspect-brk source/test/test.js",
"watch": "watch 'clear && npm run -s test' source",
"update": "updtr",
"build": "babel source --presets babel-preset-es2015 --out-dir distribution",
"prepublish": "npm run build"
},
"@std/esm": "cjs",
"repository": {
"type": "git",
"url": "git+https://github.com/ericelliott/redux-dsm.git"
},
"keywords": [
"state",
"machine",
"redux"
],
"author": "Eric Elliott",
"license": "MIT",
"bugs": {
"url": "https://github.com/ericelliott/redux-dsm/issues"
},
"homepage": "https://github.com/ericelliott/redux-dsm#readme",
"engines": {
"node": ">=6.0.0"
},
"devDependencies": {
"@std/esm": "0.26.0",
"babel-cli": "6.26.0",
"babel-preset-es2015": "6.24.1",
"colors": "1.3.2",
"eslint": "5.6.1",
"lodash": "4.17.11",
"riteway": "3.0.0",
"snyk": "1.101.1",
"tape": "4.9.1",
"updtr": "3.1.0",
"watch": "1.0.2"
},
"dependencies": {
"lodash.camelcase": "4.3.0",
"lodash.snakecase": "4.1.1"
}
}