-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
30 lines (30 loc) · 1.29 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/lib/text-buffer.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",
"source-test+test+browser-test": "npm run source-test && npm test && npm run browser-test",
"build+test": "npm run build && npm run source-test+test+browser-test",
"lint+build+test": "npm run lint && npm run build+test"
},
"devDependencies": {
"@types/blue-tape": "^0.1.31",
"@types/node": "^9.3.0",
"blue-tape": "^1.0.0",
"onchange": "^3.2.1",
"tap-spec": "^4.1.1",
"text-buffer": "13.11.3",
"ts-node": "^4.0.0",
"tslint": "^5.4.3",
"tslint-config-typings": "^0.3.1",
"typings": "^2.1.1"
},
"dependencies": {
"@types/event-kit": "^2.0.0"
}
}