-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
28 lines (28 loc) · 1.15 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
{
"name": "simple-git",
"main": "src/index.d.ts",
"version": "1.53.0",
"private": true,
"scripts": {
"build": "echo building... && typings bundle -o out/src/index.d.ts",
"lint": "echo linting... && tslint \"**/*.ts\" -e \"source/**\" -e \"source-test/**\" -e \"out/**\" -e \"node_modules/**\" -e \"typings/**\"",
"browser-test": "echo running browser tests... && echo no browser test",
"source-test": "echo running source tests... && echo no source test",
"test": "echo running server tests... && cd test && ts-node ../node_modules/blue-tape/bin/blue-tape \"**/*.ts\" | tap-spec",
"watch": "onchange -w \"**/*.ts\" -i -e \"out/**\" -- npm run build+test+lint",
"publish": "npm -s run build+test+lint && echo please publish to typings/registry",
"all-tests": "npm test",
"build+test+lint": "npm run build && npm run all-tests && npm run lint",
"prepublish": "typings install"
},
"devDependencies": {
"blue-tape": "^0.2.0",
"onchange": "^2.5.0",
"simple-git": "1.53.0",
"tap-spec": "^4.1.1",
"ts-node": "^1.2.2",
"tslint": "^3.14.0",
"tslint-config-typings": "^0.2.3",
"typings": "^1.3.2"
}
}