-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.46 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
{
"name": "xstate-undoable",
"author": "Marcel Kalveram <[email protected]>",
"license": "MIT",
"description": "Undo behaviour for xState machines",
"version": "0.0.0-development",
"main": "./lib/index.js",
"scripts": {
"build": "npm run clean && babel src --out-dir lib",
"clean": "rimraf lib",
"cover": "nyc --check-coverage npm run test:only",
"lint": "eslint src test",
"test": "npm run lint && npm run cover",
"test:only": "mocha",
"test:watch": "npm test -- --watch",
"semantic-release": "semantic-release"
},
"files": [
"lib"
],
"repository": {
"type": "git",
"url": "https://github.com/marcelkalveram/xstate-undoable.git"
},
"homepage": "https://github.com/marcelkalveram/xstate-undoable/blob/master/README.md",
"keywords": [
"xstate",
"javascript"
],
"release": {
"branches": [
"main"
]
},
"devDependencies": {
"@babel/cli": "^7.12.13",
"@babel/core": "^7.12.13",
"@babel/eslint-parser": "^7.12.13",
"@babel/preset-env": "^7.12.13",
"@babel/register": "^7.12.13",
"chai": "^4.1.2",
"eslint": "^5.16.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-react": "^7.22.0",
"mocha": "^6.1.3",
"nyc": "^13.3.0",
"rimraf": "^2.6.2",
"semantic-release": "^17.3.8"
},
"dependencies": {
"lodash": "^4.17.20",
"xstate": "^4.14.0"
}
}