-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
78 lines (78 loc) · 1.92 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
78
{
"name": "@kord.js/guardian-cli",
"version": "0.0.0",
"description": "KORD Guardian CLI",
"main": "dist/kord-guardian.js",
"module": "dist/kord-guardian.mjs",
"jsnext:main": "dist/kord-guardian.mjs",
"bin": "dist/kord-guardian.js",
"engines": {
"node": ">= 8.9.0 < 9.0.0",
"npm": ">= 5.2.0 < 5.8.0"
},
"directories": {
"doc": "doc",
"example": "example",
"lib": "lib"
},
"repository": {
"type": "git",
"url": "git+https://github.com/meta-network/kord-guardian-cli.git"
},
"keywords": [
"KORD",
"guardian",
"cli"
],
"author": "JAAK Music Ltd. (https://jaak.io/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/meta-network/kord-guardian-cli/issues"
},
"homepage": "https://github.com/meta-network/kord-guardian-cli#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
},
"publishConfig": {
"access": "public"
},
"scripts": {
"lint:staged": "lint-staged",
"build": "rollup -c",
"build:test": "rollup -c --environment TEST",
"pretest": "npm run build:test",
"release": "npm run build && np --yolo --tag=latest",
"test": "node ./dist/kord-guardian.js generate service -d ./example"
},
"devDependencies": {
"babel-core": "^6.26.0",
"babel-plugin-external-helpers": "^6.22.0",
"babel-preset-env": "^1.6.0",
"eslint": "^4.5.0",
"lint-staged": "^4.0.3",
"pre-commit": "^1.2.2",
"prettier": "^1.5.3",
"rollup": "^0.56.4",
"rollup-plugin-babel": "^3.0.2",
"rollup-plugin-butternut": "^0.1.0",
"rollup-plugin-replace": "^2.0.0"
},
"dependencies": {
"chalk": "^2.1.0",
"fs-extra": "^5.0.0",
"inquirer": "^5.1.0",
"sade": "^1.4.0",
"slugify": "^1.2.9"
}
}