-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
67 lines (67 loc) · 1.77 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
{
"name": "fsehx",
"version": "0.0.0-semantically-released",
"description": "Extended Finite State Event Handler for JavaScript",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"scripts": {
"prebuild": "rm -rf dist",
"build": "tsc",
"precommit": "npm run build && npm run cover && npm run check-coverage",
"commit": "git-cz",
"check-coverage": "nyc check-coverage --statements 100 --branches 100 --functions 100 --lines 100",
"report-coverage": "cat ./coverage/lcov.info | coveralls",
"watch:test": "npm t -- -w",
"test": "mocha src/*.test.js",
"cover": "nyc --reporter=lcov --reporter=text npm t",
"semantic-release": "semantic-release --prepare && semantic-release --publish && semantic-release --success"
},
"repository": {
"type": "git",
"url": "https://github.com/0xfede/fsehx.git"
},
"keywords": [
"fsm",
"finite",
"state",
"machine",
"event",
"handler",
"typescript",
"javascript"
],
"files": [
"dist/**/*.js",
"dist/**/*.ts",
"README.md",
"LICENSE"
],
"author": "Federico Pinna <[email protected]> (http://www.vivocha.com/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/0xfede/fsehx/issues"
},
"homepage": "https://github.com/0xfede/fsehx#readme",
"devDependencies": {
"@types/node": "10.3.4",
"chai": "4.1.2",
"commitizen": "2.10.1",
"coveralls": "^3.0.1",
"cz-conventional-changelog": "2.1.0",
"husky": "^0.14.3",
"mocha": "5.2.0",
"nyc": "12.0.2",
"semantic-release": "15.6.0",
"sinon": "^6.0.0",
"sinon-chai": "^3.2.0",
"typescript": "2.9.2"
},
"config": {
"commitizen": {
"path": "node_modules/cz-conventional-changelog"
}
},
"dependencies": {
"fseh": "^2.6.0"
}
}