-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 879 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
{
"name": "rct-generator",
"version": "1.0.2",
"description": "",
"main": "index.js",
"scripts": {
"publish:patch": "jest && npm version patch && npm publish",
"publish:minor": "jest && npm version minor && npm publish",
"publish:major": "jest && npm version major && npm publish",
"test": "jest",
"test:coverage": "jest --coverage"
},
"publishConfig": {
"access": "public"
},
"bin": {
"rct-generator": "./index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nodegram/rct-generator.git"
},
"author": "Pierre Raii & Surge Harb",
"license": "ISC",
"bugs": {
"url": "https://github.com/nodegram/rct-generator/issues"
},
"homepage": "https://github.com/nodegram/rct-generator#readme",
"dependencies": {
"commander": "^5.0.0"
},
"devDependencies": {
"jest": "^25.3.0"
}
}