-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 899 Bytes
/
package.json
File metadata and controls
38 lines (38 loc) · 899 Bytes
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": "graphene-cli",
"version": "1.1.0",
"description": "graphene-pk11 CLI",
"bin": {
"graphene": "build/index.js"
},
"main": "build/index.js",
"dependencies": {
"graphene-pk11": "^2.3.0",
"tslib": "^2.0.3"
},
"devDependencies": {
"@types/node": "^16.7.1",
"typescript": "^4.3.5"
},
"scripts": {
"prepare": "npm run build",
"test": "echo \"Error: no test specified\" && exit 1",
"build": "tsc",
"pub": "npm version patch && git push --follow-tags"
},
"repository": {
"type": "git",
"url": "git+https://github.com/PeculiarVentures/graphene-cli.git"
},
"author": "",
"license": "MIT",
"files": [
"build/**/*.{ts,js}",
"README.md",
"LICENSE"
],
"bugs": {
"url": "https://github.com/PeculiarVentures/graphene-cli/issues"
},
"homepage": "https://github.com/PeculiarVentures/graphene-cli#readme"
}