-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
57 lines (57 loc) · 1.48 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
{
"name": "maquinaria",
"version": "1.0.0",
"description": "Simple finite state machine implementation in javascript",
"main": "dist/maquinaria.cjs.js",
"module": "dist/maquinaria.esm.js",
"unpkg": "dist/maquinaria.umd.js",
"scripts": {
"mutant": "stryker run",
"build": "rollup -c",
"test": "jest --forceExit --detectOpenHandles --coverage",
"coveralls": "jest --coverage && cat ./coverage/lcov.info | coveralls",
"pretest": "prettier --write -c maquinaria.js __test__/**.js && npm run build",
"prepublishOnly": "npm t"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tomas2387/maquinaria.git"
},
"files": [
"dist/*"
],
"keywords": [
"finite",
"state",
"machine",
"state"
],
"author": "tomas2387",
"license": "MIT",
"bugs": {
"url": "https://github.com/tomas2387/maquinaria/issues"
},
"homepage": "https://github.com/tomas2387/maquinaria#readme",
"devDependencies": {
"coveralls": "^3.0.2",
"jest": "^24.8.0",
"np": "^8.0.4",
"prettier": "^1.18.2",
"rollup": "^1.16.2",
"rollup-plugin-terser": "^5.0.0",
"stryker": "^0.28.0",
"stryker-api": "^0.20.0",
"stryker-javascript-mutator": "^0.14.1",
"stryker-mocha-framework": "^0.12.0",
"stryker-mocha-runner": "^0.14.0"
},
"jest": {
"verbose": true,
"testURL": "http://localhost/",
"testEnvironment": "node",
"testPathIgnorePatterns": [
"dist/"
],
"restoreMocks": true
}
}