This repository was archived by the owner on Apr 29, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 2.02 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 2.02 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
{
"name": "@eq8/core",
"description": "EQuateJS Core API Library",
"main": "dist/eq8core.js",
"scripts": {
"audit": "nsp check",
"build": "npm run build:rollup && npm run build:buble && npm run build:doctoc",
"build:rollup": "rollup index.js --format umd --name core --output dist/eq8core.es6.js",
"build:buble": "buble dist/eq8core.es6.js > dist/eq8core.js",
"build:doctoc": "doctoc --github --title \"## Contents\" ./",
"deps": "npm run deps:missing && npm run deps:extra",
"deps:missing": "dependency-check package.json",
"deps:extra": "dependency-check package.json --extra --no-dev --ignore",
"lint": "eslint lib test",
"test": "npm run build && tape test/test.*.js | faucet",
"cover": "npm run build && istanbul cover test/test.index.js",
"analyze": "plato --eslint=./.eslintrc -d analysis index.js ./lib/api/*.js",
"semantic-release": "semantic-release pre && npm publish && semantic-release post",
"precommit": "npm run lint",
"commitmsg": "validate-commit-msg",
"prepush": "npm run test"
},
"config": {
"validate-commit-msg": {
"helpMessage": "allowed types: feat, fix, docs, style, refactor, perf, test, chore, revert"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/eq8/core.git"
},
"keywords": [
"cqrs",
"es",
"interface"
],
"author": "bbartolome",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/eq8/core/issues"
},
"homepage": "https://eq8.js.org",
"engines": {
"node": ">=6.0.0",
"npm": ">=3.0.0"
},
"dependencies": {
"event-emitter": "0.3.5",
"winston": "2.3.1"
},
"devDependencies": {
"buble": "0.15.2",
"dependency-check": "2.9.1",
"doctoc": "1.3.0",
"eslint": "4.5.0",
"eslint-config-eslint": "4.0.0",
"faucet": "0.0.1",
"husky": "0.14.3",
"istanbul": "0.4.5",
"nsp": "2.7.0",
"plato": "1.7.0",
"rollup": "0.47.6",
"semantic-release": "7.0.2",
"tape": "4.8.0",
"validate-commit-msg": "2.14.0"
}
}