-
-
Notifications
You must be signed in to change notification settings - Fork 1.3k
/
Copy pathpackage.json
72 lines (72 loc) · 2 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
{
"name": "xstate",
"version": "4.8.0",
"description": "Finite State Machines and Statecharts for the Modern Web.",
"main": "lib/index.js",
"module": "es/index.js",
"types": "lib/index.d.ts",
"sideEffects": false,
"funding": {
"type": "opencollective",
"url": "https://opencollective.com/xstate"
},
"files": [
"dist",
"lib/**/*.js",
"lib/**/*.d.ts",
"es/**/*.js",
"es/**/*.d.ts"
],
"keywords": [
"statechart",
"state machine",
"finite state machine",
"finite automata",
"scxml",
"state",
"interpreter"
],
"scripts": {
"clean": "rm -rf lib es dist tsconfig.tsbuildinfo",
"test": "jest",
"build": "tsc && rollup -c && npm run annotate:es",
"annotate:es": "babel es --out-dir es --no-babelrc --plugins annotate-pure-calls",
"preversion": "npm run test",
"version": "npm run build",
"postversion": "git push --follow-tags",
"prepublishOnly": "npm run build",
"publish:next": "npm version prerelease && npm publish --tag next"
},
"repository": {
"type": "git",
"url": "git+https://github.com/davidkpiano/xstate.git"
},
"author": "David Khourshid <davidkpiano@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/davidkpiano/xstate/issues"
},
"homepage": "https://github.com/davidkpiano/xstate/tree/master/packages/core#readme",
"devDependencies": {
"@babel/cli": "^7.6.0",
"@babel/core": "^7.6.0",
"@scion-scxml/test-framework": "^2.0.15",
"babel-plugin-annotate-pure-calls": "^0.4.0",
"jest": "^24.8.0",
"jsdom": "^14.0.0",
"jsdom-global": "^3.0.2",
"lerna-alias": "3.0.3-0",
"pkg-up": "^3.1.0",
"rollup": "^1.26.3",
"rollup-plugin-filesize": "^6.2.1",
"rollup-plugin-replace": "^2.2.0",
"rollup-plugin-terser": "^5.1.2",
"rollup-plugin-typescript2": "^0.25.2",
"rollup-plugin-uglify": "^6.0.2",
"rxjs": "^6.5.1",
"ts-jest": "^24.1.9",
"tslib": "^1.10.0",
"typescript": "^3.8.3",
"xml-js": "^1.6.11"
}
}