-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 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
53
54
55
56
57
58
59
60
{
"private": true,
"version": "1.0.0",
"description": "KORD Network JavaScript library",
"workspaces": [
"packages/*"
],
"engines": {
"node": ">= 8.9.0 <= 8.9.1",
"yarn": ">= 1.3.0 <= 1.3.2"
},
"directories": {
"doc": "doc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kord-network/kord.js.git"
},
"keywords": [
"kord",
"network",
"kord.js"
],
"author": "JAAK Music Ltd. (https://jaak.io/)",
"license": "LGPL-3.0",
"bugs": {
"url": "https://github.com/kord-network/kord.js/issues"
},
"homepage": "https://github.com/kord-network/kord.js#readme",
"lint-staged": {
"*.js": [
"eslint --fix \"lib/**/*.js\"",
"prettier --write --no-semi --single-quote --trailing-comma=es5",
"git add"
]
},
"pre-commit": {
"run": [
"lint:staged",
"test"
],
"silent": true
},
"scripts": {
"lint:staged": "lint-staged",
"build": "lerna run build",
"pretest": "lerna run build:test",
"test": "jest"
},
"devDependencies": {
"eslint": "^4.13.1",
"eslint-config-jaak": "^1.0.0",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-react": "^7.5.1",
"lerna": "^2.5.1",
"lint-staged": "^6.0.0",
"pre-commit": "^1.2.2",
"prettier": "^1.9.2"
}
}