forked from statelyai/xstate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.71 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
{
"name": "xstate",
"version": "3.2.1",
"description": "Simple JavaScript Finite State Machines and Statecharts",
"main": "lib/index.js",
"module": "es/index.js",
"types": "lib/index.d.ts",
"scripts": {
"start": "npm run build",
"prettify": "prettier --config ./.prettierrc --write ./{lib,es,src,test}/**/*.ts",
"test": "npm run prettify && mocha --require ts-node/register test/**.ts test/**/*.test.ts",
"watch": "webpack ./lib/index.js ./dist/xstate.js --config webpack.config.js -w",
"build": "npm run build:cjs && npm run build:es && npm run build:umd && npm run build:utils",
"build:cjs": "tsc",
"build:es": "tsc --outDir es -m ES2015",
"build:umd": "webpack -p ./es/index.js ./dist/xstate.js --config webpack.config.js",
"build:utils": "webpack -p ./es/graph.js ./dist/xstate.utils.js --config webpack.utils.config.js",
"version": "npm run build",
"postversion": "git push --follow-tags",
"prepublish": "npm run build",
"publish:beta": "npm version patch && npm publish --tag beta"
},
"repository": {
"type": "git",
"url": "git+https://github.com/davidkpiano/xstate.git"
},
"author": "David Khourshid <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/davidkpiano/xstate/issues"
},
"homepage": "https://github.com/davidkpiano/xstate#readme",
"devDependencies": {
"@types/chai": "^4.0.4",
"@types/mocha": "^2.2.44",
"@types/node": "^8.9.4",
"chai": "^4.1.2",
"mocha": "^3.5.3",
"prettier": "^1.7.0",
"scxml-test-framework": "^1.0.2",
"ts-node": "^3.3.0",
"tslint": "^5.7.0",
"typescript": "^2.7.1",
"webpack": "^3.5.6",
"xml-js": "^1.6.2"
},
"dependencies": {}
}