-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.29 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
{
"name": "hookify-object",
"version": "0.1.2",
"description": "Wrap an object with ES6 proxy to add hooks capabilities",
"author": {
"name": "Axel SHAÏTA",
"email": "shaita.axel@gmail.com",
"url": "https://www.codeheroes.fr"
},
"license": "MIT",
"keywords": [
"hook",
"proxy",
"observable",
"eventEmitter",
"nodejs"
],
"repository": {
"type": "git",
"url": "git+https://github.com/arkerone/hookify-object.git"
},
"bugs": {
"url": "https://github.com/arkerone/hookify-object/issues"
},
"homepage": "https://github.com/arkerone/hookify-object#readme",
"main": "./lib",
"scripts": {
"release": "standard-version",
"test": "nyc mocha",
"coverage": "nyc report --reporter=text-lcov > coverage.lcov"
},
"devDependencies": {
"@commitlint/cli": "^11.0.0",
"@commitlint/config-conventional": "^11.0.0",
"chai": "^4.2.0",
"eslint": "^7.15.0",
"eslint-config-standard": "^16.0.2",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"husky": "^4.3.5",
"mocha": "^8.2.1",
"nyc": "^15.1.0",
"sinon": "^9.2.2",
"standard-version": "^9.0.0"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
}
}