-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.31 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
{
"name": "ffsm",
"version": "0.2.0",
"description": "A simple, functional finite state machine in JavaScript",
"module": "index.js",
"author": "Madison Barry <[email protected]>",
"license": "MIT",
"homepage": "https://github.com/TBPixel/functional-finite-state-machine",
"repository": {
"type": "git",
"url": "git+https://github.com/TBPixel/functional-finite-state-machine.git"
},
"bugs": {
"url": "https://github.com/TBPixel/functional-finite-state-machine/issues"
},
"files": [
"src",
"build",
"index.js",
"README.md"
],
"publishConfig": {
"access": "public"
},
"keywords": [
"finite state machine",
"state machine",
"fsm",
"functional"
],
"scripts": {
"dev": "webpack --mode development --watch",
"build": "webpack --mode production",
"test": "jest",
"test-coverage": "jest --coverage"
},
"devDependencies": {
"@babel/cli": "^7.6.0",
"@babel/core": "^7.6.0",
"@babel/plugin-transform-spread": "^7.2.2",
"@babel/preset-env": "^7.6.0",
"babel-eslint": "^10.0.3",
"babel-loader": "^8.0.6",
"eslint": "^6.4.0",
"eslint-config-airbnb": "^18.0.1",
"eslint-loader": "^3.0.0",
"eslint-plugin-import": "^2.18.2",
"jest": "^28.1.3",
"webpack": "^5.74.0",
"webpack-cli": "^4.10.0"
}
}