-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
16 lines (16 loc) · 903 Bytes
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
{
"private": true,
"scripts": {
"build": "echo building... && typings bundle -o out/src/elasticsearch.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 -s run build+test",
"publish": "npm -s run lint+build+test && echo please publish to typings/registry",
"all-tests": "npm test",
"build+test": "npm run build && npm run all-tests",
"lint+build+test": "npm run lint && npm run build+test",
"prepublish": "typings install"
}
}