-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
54 lines (54 loc) · 1.78 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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
{
"private": true,
"scripts": {
"build": "echo building... && typings bundle -o out/index.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... && node npm-scripts/test \"test/**/*.ts\"",
"source-test": "echo running source tests... && echo no source test",
"test": "echo running server tests... && echo no server test",
"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 run browser-test",
"build+test": "npm run build && npm run all-tests",
"lint+build+test": "npm run lint && npm run build+test"
},
"devDependencies": {
"@types/node": "^12.6.8",
"blue-tape": "^0.2.0",
"jspm": "^0.17.0-beta.17",
"onchange": "^2.5.0",
"page": "1.7.1",
"stream": "0.0.2",
"tap-spec": "^4.1.1",
"tape-run": "^2.1.4",
"ts-node": "^0.8.0",
"tslint": "^3.10.2",
"tslint-config-typings": "^0.2.3"
},
"jspm": {
"dependencies": {
"page": "npm:page@^1.7.1"
},
"devDependencies": {
"os": "github:jspm/nodelibs-os@^0.2.0-alpha",
"plugin-typescript": "github:frankwallis/plugin-typescript@^4.0.16",
"typescript": "npm:typescript@^1.6.2"
},
"peerDependencies": {
"process": "github:jspm/nodelibs-process@^0.2.0-alpha"
},
"overrides": {
"npm:[email protected]": {
"browser": {},
"map": {
"buffer": "@empty",
"child_process": "@empty",
"fs": "@empty",
"path": "@empty",
"process": "@empty",
"readline": "@empty"
}
}
}
}
}