-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1.06 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
{
"name": "harken",
"version": "1.2.20",
"description": "a simple event library",
"main": "index.js",
"scripts": {
"start": "node app.js",
"test": "npm run lint && istanbul cover _mocha -- *.test.js bin/*.test.js components/**/*.test.js",
"codeship": "npm test && cat ./coverage/lcov.info | coveralls && rm -rf ./coverage",
"lint": "bin/lint.js",
"release": "npm test && echo ' => releasing' && tom"
},
"repository": {
"type": "git",
"url": "https://github.com/ansble/harken.git"
},
"keywords": [
"events",
"eda",
"universal"
],
"author": "Daniel Sellers",
"license": "MIT",
"bugs": {
"url": "https://github.com/ansble/harken/issues"
},
"homepage": "https://github.com/ansble/harken",
"engines": {
"node": ">4.0.0"
},
"devDependencies": {
"chai": "~4.1.0",
"chalk": "~2.4.0",
"coveralls": "~3.0.0",
"eslint": "~4.19.0",
"istanbul": "~0.4.5",
"minimist": "~1.2.0",
"mocha": "~6.2.2",
"tom-sawyer": "^0.3.0"
},
"dependencies": {
"event-state": "^1.0.0"
}
}