-
Notifications
You must be signed in to change notification settings - Fork 30
/
Copy pathpackage.json
61 lines (61 loc) · 2.32 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
{
"name": "stent",
"version": "8.0.4",
"description": "Stent is combining the ideas of redux with the concept of state machines",
"main": "lib",
"scripts": {
"build": "npm run coverage && npm run test && babel src --out-dir lib && browserify ./lib/index.js -o ./standalone/stent.js --standalone stent && uglifyjs ./standalone/stent.js -o ./standalone/stent.min.js",
"test": "./node_modules/.bin/mocha --require babel-register --require babel-polyfill --require test/setup.js --require jsdom-global/register --reporter spec --slow 100 './src/**/**.spec.{js,jsx}'",
"test-watch": "./node_modules/.bin/mocha --require babel-register --require babel-polyfill --require test/setup.js --require jsdom-global/register --reporter spec --slow 100 --watch --watch-extensions jx,jsx,json './src/**/**.spec.{js,jsx}'",
"t": "mocha ./test/setup.js ./test/specs/**/*.spec.js",
"coverage": "./node_modules/.bin/istanbul cover ./node_modules/.bin/_mocha -- --require babel-register --require babel-polyfill --require test/setup.js --require jsdom-global/register --reporter xunit --reporter-options output=reports/test-results.xml './src/**/**.spec.{js,jsx}'",
"release": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/krasimir/stent.git"
},
"keywords": [
"state",
"finite",
"state",
"machine",
"stent",
"state machine",
"mealy",
"redux",
"react",
"connect",
"transitions"
],
"author": "Krasimir Tsonev",
"license": "MIT",
"bugs": {
"url": "https://github.com/krasimir/stent/issues"
},
"homepage": "https://github.com/krasimir/stent#readme",
"devDependencies": {
"babel-cli": "6.24.0",
"babel-plugin-add-module-exports": "0.2.0",
"babel-polyfill": "6.23.0",
"babel-preset-es2015": "6.22.0",
"babel-preset-react": "6.23.0",
"babel-preset-stage-3": "6.22.0",
"babel-register": "6.24.0",
"browserify": "^14.4.0",
"chai": "4.2.0",
"chai-enzyme": "1.0.0-beta.1",
"enzyme": "3.10.0",
"enzyme-adapter-react-16": "1.14.0",
"istanbul": "1.1.0-alpha.1",
"jsdom": "9.8.3",
"jsdom-global": "2.1.1",
"mocha": "3.2.0",
"react": "16.9.0",
"react-addons-test-utils": "15.6.2",
"react-dom": "16.9.0",
"sinon": "2.0.0",
"sinon-chai": "2.9.0",
"uglify-js": "^3.0.28"
}
}