-
Notifications
You must be signed in to change notification settings - Fork 25
/
package.json
49 lines (49 loc) · 1.4 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
{
"name": "state-machine",
"version": "1.0.5",
"description": "An expressive, feature-rich, event-driven JavaScript finite-state machine",
"scripts": {
"dev": "webpack --progress --colors --watch --env=dev",
"prepublish": "npm run build",
"build": "webpack --env=build",
"test": "mocha --compilers js:babel-core/register --colors -w ./test/*.spec.js",
"demo": "cpx './dist/state-machine.js' ./demo/assets/js --watch | lite-server"
},
"dependencies": {},
"devDependencies": {
"babel-core": "^6.25.0",
"babel-loader": "^7.1.0",
"babel-preset-env": "^1.5.2",
"babel-eslint": "^7.2.3",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-preset-es2015": "^6.24.1",
"chai": "3.4.1",
"cpx": "^1.5.0",
"eslint": "1.7.2",
"eslint-loader": "1.1.0",
"lite-server": "^2.2.2",
"mocha": "2.3.4",
"mocha-logger": "^1.0.4",
"webpack": "^3.0.0",
"yargs": "3.32.0"
},
"main": "dist/state-machine.js",
"files": [
"dist/state-machine.*"
],
"repository": {
"type": "git",
"url": "git+https://github.com/davestewart/javascript-state-machine.git"
},
"keywords": [
"statemachine",
"fsm",
"state"
],
"author": "Dave Stewart",
"license": "MIT",
"bugs": {
"url": "https://github.com/davestewart/javascript-state-machine/issues"
},
"homepage": "https://github.com/davestewart/javascript-state-machine#readme"
}