-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
28 lines (28 loc) · 1.18 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
{
"private": true,
"scripts": {
"build": "echo building... && typings bundle -o out/xsltproc.d.ts",
"lint": "echo linting... && tslint \"**/*.ts\" -e \"source/**\" -e \"source-test/**\" -e \"out/**\" -e \"node_modules/**\" -e \"typings/**\"",
"source-test": "echo source-testing... && cd source-test && mocha --require ../node_modules/ts-node/register xsltproc_test.ts",
"test": "echo testing... && cd test && ts-node ../node_modules/blue-tape/bin/blue-tape \"**/*.ts\" | tap-spec",
"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",
"chai": "^4.0.0",
"mocha": "^3.3.0",
"onchange": "^3.2.1",
"tap-spec": "^4.1.1",
"ts-node": "^4.0.0",
"tslint": "^5.2.0",
"tslint-config-typings": "^0.3.1",
"typescript": "^2.3.2",
"typings": "^2.1.1",
"xsltproc": "0.0.3"
}
}