-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.33 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
{
"name": "@frosti/asguard",
"version": "0.2.0",
"description": "Frost npm asguard",
"author": "Jesse Weed <[email protected]>",
"homepage": "http://frosti.js.org",
"repository": {
"type": "git",
"url": "git+https://github.com/frostijs/asguard.git"
},
"bugs": {
"url": "https://github.com/frostijs/asguard/issues"
},
"bin": {
"asguard": "bin/asguard.js"
},
"scripts": {
"build": "NODE_ENV=production rollup -c ./rollup.scripts.js",
"check": "./bin/asguard.js --warn",
"prepublishOnly": "npm run check",
"publish:major": "npm version major && npm publish",
"publish:minor": "npm version minor && npm publish",
"publish:patch": "npm version patch && npm publish"
},
"dependencies": {
"colors": "^1.3.x",
"depcheck": "^0.8.x",
"figlet": "^1.2.x",
"minimist": "^1.2.x",
"node-emoji": "^1.10.x"
},
"devDependencies": {
"@frosti/eslint-config-base": "^0.1.x",
"babel-eslint": "^10.0.x",
"eslint": "^5.3.x",
"eslint-config-airbnb-base": "^13.1.x",
"eslint-plugin-import": "^2.17.x",
"rollup": "^1.12.x",
"rollup-plugin-babel-minify": "^8.0.x",
"rollup-plugin-eslint": "^6.0.x"
},
"peerDependencies": {
"colors": "^1.3.x",
"depcheck": "^0.8.x",
"figlet": "^1.2.x",
"minimist": "^1.2.x",
"node-emoji": "^1.10.x"
}
}