This repository was archived by the owner on Feb 4, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.47 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.47 KB
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
{
"name": "trustgraph-cli",
"version": "0.0.0",
"private": false,
"license": "Apache-2.0",
"author": "Harlan T Wood (https://github.com/harlantwood)",
"contributors": [
"Jack Senechal (https://github.com/jacksenechal)"
],
"description": "Trust Graph command line interface",
"scripts": {
"shipit": "yarn pre-push && git push --tags origin head",
"pre-push": "yarn lint && yarn readme && yarn check-clean",
"check-clean": "if [[ $(git status --porcelain) ]]; then echo '*** Please stash or commit changes first ***\n' && exit 1; fi ",
"lint": "yarn lint:ci -- --fix",
"lint:ci": "eslint --ignore-pattern '!.eslintrc.js' .eslintrc.js test src util 'bin/*'",
"readme": "util/updateReadme.js"
},
"bin": {
"trust": "bin/trust"
},
"dependencies": {
"commander": "^2.9.0",
"lightsaber": "^0.6.8",
"lodash": "^4.17.4",
"trustgraph": "^0.3.3"
},
"devDependencies": {
"babel-core": "6.24.0",
"babel-eslint": "7.2.1",
"babel-preset-es2015": "6.24.0",
"babel-preset-stage-0": "6.22.0",
"babel-register": "6.24.0",
"babel-runtime": "6.23.0",
"chai": "^3.5.0",
"chai-as-promised": "^6.0.0",
"eslint": "^3.19.0",
"eslint-config-comakery": "^0.0.4",
"mocha": "^3.2.0"
},
"engines": {
"node": ">=4"
},
"repository": {
"type": "git",
"url": "https://github.com/trustgraph/js-trustgraph-cli.git"
},
"bugs": {
"url": "https://github.com/trustgraph/js-trustgraph-cli/issues"
}
}