-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
93 lines (93 loc) · 2.44 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
{
"name": "kingly",
"sideEffects": false,
"version": "0.29.0",
"description": "State machine library (Extended Hierarchical State Transducer)",
"repository": {
"type": "git",
"url": "https://github.com/brucou/kingly"
},
"keywords": [
"state-machine",
"state machine",
"finite state machine",
"state-transducer",
"state transducer",
"automata",
"automaton",
"automata"
],
"source": "src/index.js",
"module": "dist/kingly.es.js",
"main": "dist/kingly.umd.js",
"unpkg": "dist/kingly.umd.js",
"files": [
"dist/kingly.es.js",
"dist/kingly.es.js.map",
"dist/kingly.es.min.js",
"dist/kingly.es.min.js.map",
"dist/kingly.umd.js",
"dist/kingly.umd.js.map",
"dist/kingly.umd.min.js",
"dist/kingly.umd.min.js.map"
],
"np": {
"yarn": false,
"contents": "dist"
},
"scripts": {
"prepublishOnly": "npm run build",
"test": "parcel test/parcel-index.html",
"build_dev": "rollup --sourcemap -c rollup.config.js --environment BUILD:development",
"build_prod": "rollup --sourcemap -c rollup.config.js --environment BUILD:production",
"build": "npm run build_dev && npm run build_prod"
},
"author": "brucou",
"license": "MIT",
"devDependencies": {
"@babel/cli": "^7.4.4",
"@babel/core": "^7.4.5",
"@babel/preset-env": "^7.4.5",
"babel-preset-es2015-rollup": "^3.0.0",
"benchmark": "^2.1.2",
"browser-sync": "^2.18.8",
"courtesan": "^0.4.0",
"fetch-jsonp": "^1.1.3",
"flipping": "1.1.0",
"hyperscript-helpers": "3.0.3",
"immer": "1.7.4",
"json-patch-es6": "^2.0.6",
"kuker-emitters": "^6.7.4",
"nodemon": "^1.9.2",
"parcel": "^1.12.4",
"parcel-bundler": "^1.12.4",
"qunitjs": "^1.20.0",
"ramda": "^0.25.0",
"react": "16.5.0",
"react-dom": "16.5.0",
"react-hyperscript": "3.2.0",
"rollup": "^0.63.4",
"rollup-plugin-babel": "^4.3.2",
"rollup-plugin-commonjs": "^9.1.3",
"rollup-plugin-node-builtins": "^2.1.2",
"rollup-plugin-node-resolve": "^3.3.0",
"rollup-plugin-terser": "^1.0.1",
"rollup-plugin-uglify": "^4.0.0",
"rx": "^4.1.0",
"rxjs": "^6.3.3",
"rxjs-compat": "^6.3.3",
"sinon": "^1.17.2",
"sinon-qunit": "^2.0.0",
"watchify": "^3.8.0"
},
"dependencies": {
"chess.js": "^0.11.0",
"fp-rosetree": "^0.6.2",
"react-state-driven": "^0.11.1"
},
"browserslist": [
"> 1%",
"last 2 versions",
"not ie <= 9"
]
}