-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
38 lines (38 loc) · 955 Bytes
/
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
{
"name": "rocketstation-temp-cli",
"version": "0.1.2",
"description": "CLI tool",
"keywords": [
"rocketstation",
"cli"
],
"scripts": {
"build": "rm -rf build && babel src --ignore test.js -d build",
"lint": "standard 'src/**/!(test.js)' --fix --verbose | snazzy"
},
"author": "Rocket Station <contact@rstation.io> (https://rstation.io)",
"contributors": [
"Oleksii Bilous <oleksiibilous@rstation.io> (https://rstation.io)",
"Oleksii Pysanko <oleksiipysanko@rstation.io> (https://rstation.io)"
],
"license": "MIT",
"bin": {
"rs": "build/index.js"
},
"devDependencies": {
"babel-cli": "6",
"babel-plugin-transform-object-rest-spread": "6",
"babel-preset-env": "1",
"babel-register": "6",
"snazzy": "7",
"standard": "10"
},
"engines": {
"node": ">=7"
},
"dependencies": {
"@rocketstation/change-case": "2",
"rocketstation-api": "1",
"vorpal": "1"
}
}