This repository was archived by the owner on Nov 12, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 2.09 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 2.09 KB
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
{
"name": "finity",
"version": "0.5.4",
"description": "A finite state machine library for Node.js and the browser with a friendly configuration DSL",
"keywords": [
"state",
"machine",
"state machine",
"finite state machine",
"fsm"
],
"author": {
"name": "Nick Uraltsev",
"email": "nick.uraltsev@gmail.com"
},
"repository": {
"type": "git",
"url": "https://github.com/nickuraltsev/finity.git"
},
"bugs": {
"url": "https://github.com/nickuraltsev/finity/issues"
},
"license": "MIT",
"files": [
"*.md",
"lib",
"umd",
"index.d.ts"
],
"main": "lib/index.js",
"types": "index.d.ts",
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-register": "^6.26.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"babel-loader": "^7.1.4",
"jasmine": "^3.1.0",
"jasmine-spec-reporter": "^4.2.1",
"eslint": "^4.18.2",
"eslint-config-airbnb": "^16.1.0",
"eslint-plugin-import": "^2.9.0",
"eslint-plugin-react": "^7.7.0",
"eslint-plugin-jsx-a11y": "^6.0.3",
"babel-eslint": "^8.2.2",
"isparta": "^4.0.0",
"coveralls": "^3.0.0",
"rimraf": "^2.6.2",
"webpack": "^4.1.0",
"webpack-cli": "^2.0.10",
"cross-env": "^5.1.3",
"typescript": "^2.7.2",
"shx": "^0.2.2",
"gzip-size-cli": "^2.1.0"
},
"scripts": {
"clean": "rimraf lib && rimraf umd",
"build:commonjs": "babel src --out-dir lib && shx cp src/index.commonjs.js lib/index.js",
"build:umd": "webpack src/index.commonjs.js -o umd/Finity.js --mode development",
"build:umd:min": "webpack src/index.commonjs.js -o umd/Finity.min.js --mode production",
"build": "npm run clean && npm run build:commonjs && npm run build:umd && npm run build:umd:min && gzip-size umd/Finity.min.js",
"test:typings": "tsc",
"test": "node test/support/jasmineRunner.js && npm run test:typings",
"coverage": "babel-node node_modules/isparta/bin/isparta cover --root src --report lcovonly test/support/jasmineRunner.js",
"lint": "eslint src test examples"
}
}