-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.61 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.61 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
{
"name": "time-bombs",
"version": "1.0.0",
"description": "Create time bombs and listen for them to 💥",
"keywords": [
"timer",
"timeout",
"programmable",
"time bomb",
"bomb"
],
"license": "MIT",
"author": "Gabriel Montes <gabriel@bloq.com>",
"files": [
"es5",
"src"
],
"main": "src/index.js",
"browser": "es5/index.js",
"repository": "autonomoussoftware/time-bombs",
"scripts": {
"build": "babel -d es5/ src/",
"check": "dependency-check . && dependency-check . --unused --no-dev",
"check:outdated": "npm-check",
"coverage": "nyc --lines 95 --functions 95 --branches 95 --reporter=lcov --reporter=text npm test",
"lint": "eslint --cache .",
"precommit": "npm run lint",
"prepublishOnly": "npm run build && npm run precommit && npm run prepush && tag-matches",
"prepush": "npm run check && npm run coverage",
"test": "mocha"
},
"dependencies": {
"consecutive": "^5.0.4",
"debug": "^3.1.0"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-preset-env": "^1.6.1",
"chai": "^4.1.2",
"check-tag-matches": "^1.0.0",
"dependency-check": "^3.1.0",
"eslint": "^4.19.1",
"eslint-config-bloq": "^1.2.2",
"eslint-config-standard": "^11.0.0",
"eslint-plugin-import": "^2.10.0",
"eslint-plugin-jsdoc": "^3.5.0",
"eslint-plugin-mocha": "^5.0.0",
"eslint-plugin-node": "^6.0.1",
"eslint-plugin-prefer-arrow": "^1.1.1",
"eslint-plugin-promise": "^3.7.0",
"eslint-plugin-standard": "^3.0.1",
"husky": "^0.14.3",
"mocha": "^5.0.5",
"npm-check": "^5.6.0",
"nyc": "^11.6.0"
}
}