forked from typed-typings/npm-iscroll
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
30 lines (30 loc) · 1.12 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
{
"private": true,
"scripts": {
"build": "echo building... && typings bundle -o out",
"lint": "echo linting... && tslint \"**/*.ts\" -e \"source/**\" -e \"source-test/**\" -e \"out/**\" -e \"node_modules/**\" -e \"typings/**\"",
"test": "echo testing... && node scripts/test.js",
"source-test": "echo source-testing... && echo source-test is not specified",
"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": "^0.2.0",
"browserify": "^13.0.0",
"globby": "^4.0.0",
"iscroll": "5.1.3",
"onchange": "^2.2.0",
"tap-spec": "^4.1.1",
"tape-run": "^2.1.3",
"ts-node": "^0.7.0",
"tsify": "^0.14.1",
"tslint": "^3.7.1",
"tslint-config-typings": "^0.2.0",
"typescript": "^1.8.9",
"typings": "^0.7.9"
}
}