-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
53 lines (53 loc) · 1.51 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
50
51
52
53
{
"name": "test-your-gitskills",
"version": "0.0.1",
"description": "Test your Git Skills",
"bin": {
"build": "./dist/bin/build.js"
},
"main": "./dist/lib/index.js",
"scripts": {
"prepublish" : "npm run setup && npm run build && npm run output",
"setup" : "typings install && gitbook install",
"build" : "gulp build",
"output-gitbook" : "gitbook build",
"output-repo" : "node ./dist/bin/build.js",
"output" : "npm run output-gitbook && npm run output-repo",
"lint" : "gulp lint",
"only-test" : "gulp test",
"pretest" : "npm run lint",
"test" : "npm run only-test",
"prepush" : "npm test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/uecmma/test-your-gitskills.git"
},
"author": "MMA",
"license": "MIT",
"bugs": {
"url": "https://github.com/uecmma/test-your-gitskills/issues"
},
"homepage": "https://github.com/uecmma/test-your-gitskills#readme",
"devDependencies": {
"coffee-script": "^1.10.0",
"gitbook-cli": "^2.3.0",
"gulp": "^3.9.1",
"gulp-load-plugins": "^1.2.4",
"gulp-tslint": "^6.1.1",
"gulp-typescript": "^2.13.6",
"husky": "^0.11.7",
"markdownlint": "^0.2.0",
"merge2": "^1.0.2",
"run-sequence": "^1.2.2",
"through2": "^2.0.1",
"tslint": "^3.15.1",
"typescript": "^1.8.10",
"typings": "^1.3.3"
},
"dependencies": {
"minimist": "^1.2.0",
"mkdirp": "~0.5.1",
"nodegit": "~0.14.1"
}
}