-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
26 lines (26 loc) · 1.09 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
{
"private": true,
"scripts": {
"build": "echo building... && typings bundle -o out/index.d.ts",
"lint": "echo linting... && tslint \"**/*.ts\" -e \"node_modules/**\" -e \"source/**\" -e \"source-test/**\" -e \"out/**\" -e \"typings/**\"",
"test": "echo testing... && cd test && ts-node ../node_modules/blue-tape/bin/blue-tape \"**/*.ts\" | tap-spec",
"source-test": "echo source-testing... && echo no source-test configured",
"watch": "onchange \"**/*.ts\" -i -e \"out/**\" -- npm -s run build+test",
"publish": "npm -s run lint+build+test && echo please publish to typings/registry",
"source-test+test": "npm run source-test && npm test",
"build+test": "npm run build && npm run source-test+test",
"lint+build+test": "npm run lint && npm run build+test",
"prepublish": "typings install"
},
"devDependencies": {
"blue-tape": "^1.0.0",
"bluebird": "3.5.1",
"onchange": "^3.0.2",
"tap-spec": "^4.1.1",
"ts-node": "^4.0.0",
"tslint": "^5.0.0",
"tslint-config-typings": "^0.3.1",
"typescript": "^2.0.6",
"typings": "^2.0.0"
}
}