forked from ai/nanoevents
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
77 lines (77 loc) · 1.74 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
68
69
70
71
72
73
74
75
76
77
{
"name": "nanoevents",
"version": "1.0.2",
"description": "Simple and tiny (119 bytes) event emitter library",
"keywords": [
"EventEmitter",
"Events",
"emit",
"emitter",
"event",
"pub/sub",
"publish",
"reactor",
"subscribe"
],
"author": "Andrey Sitnik <[email protected]>",
"license": "MIT",
"repository": "ai/nanoevents",
"dependencies": {},
"devDependencies": {
"docdash": "^0.4.0",
"eslint": "^4.7.1",
"eslint-config-logux": "^16.2.0",
"eslint-config-standard": "^10.2.1",
"eslint-plugin-es5": "^1.1.0",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-jest": "^21.1.0",
"eslint-plugin-node": "^5.1.1",
"eslint-plugin-promise": "^3.5.0",
"eslint-plugin-security": "^1.4.0",
"eslint-plugin-standard": "^3.0.1",
"jest": "^21.1.0",
"jsdoc": "^3.5.5",
"lint-staged": "^4.2.1",
"pre-commit": "^1.2.2",
"rimraf": "^2.6.2",
"size-limit": "^0.11.4",
"yaspeller-ci": "^0.7.0"
},
"scripts": {
"lint-staged": "lint-staged",
"spellcheck": "yarn docs && yaspeller-ci *.md docs/*.html",
"clean": "rimraf docs/ coverage/",
"lint": "eslint *.js test/*.js",
"docs": "jsdoc --configure .jsdocrc *.js",
"test": "jest --coverage && yarn lint && size-limit && yarn spellcheck"
},
"jest": {
"coverageThreshold": {
"global": {
"statements": 100
}
}
},
"engines": {
"node": ">=4.0.0"
},
"eslintConfig": {
"extends": "eslint-config-logux/browser",
"rules": {
"no-invalid-this": "off"
}
},
"size-limit": [
{
"path": "index.js",
"limit": "119 B"
}
],
"lint-staged": {
"*.md": "yaspeller-ci",
"*.js": "eslint"
},
"pre-commit": [
"lint-staged"
]
}