-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.17 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
{
"name": "@shasharoman/amp",
"version": "1.1.1",
"description": "a message protocol",
"main": "index.js",
"directories": {
"lib": "lib",
"test": "test"
},
"scripts": {
"test": "mocha test/"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/shasharoman/amp.git"
},
"keywords": [
"buffer",
"protocol"
],
"author": "shasharoman@gmail.com",
"license": "MIT",
"bugs": {
"url": "https://github.com/shasharoman/amp/issues"
},
"homepage": "https://github.com/shasharoman/amp#readme",
"devDependencies": {
"chai": "4.2.0",
"eslint": "6.5.0",
"husky": "3.0.7",
"js-beautify": "1.10.2",
"lint-staged": "9.4.0",
"mocha": "6.2.1"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": [
"js-beautify --config ./.editorconfig -r -f",
"eslint --fix",
"git add"
],
"*.json": [
"js-beautify --config ./.editorconfig -r -f",
"git add"
]
}
}