-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
67 lines (67 loc) · 2.47 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
55
56
57
58
59
60
61
62
63
64
65
66
67
{
"private": true,
"scripts": {
"build": "echo building... && typings bundle -o out/sdk.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",
"prepublish": "typings install"
},
"devDependencies": {
"blue-tape": "^0.2.0",
"jspm": "^0.17.0-beta.22",
"onchange": "^2.5.0",
"soundcloud": "3.1.2",
"stream": "0.0.2",
"tap-spec": "^4.1.1",
"tape-run": "^2.1.4",
"ts-node": "^0.9.3",
"tslint": "^3.13.0",
"tslint-config-typings": "^0.2.3",
"typings": "^1.3.1"
},
"jspm": {
"devDependencies": {
"assert": "github:jspm/nodelibs-assert@^0.2.0-alpha",
"blue-tape": "npm:blue-tape@^0.2.0",
"buffer": "github:jspm/nodelibs-buffer@^0.2.0-alpha",
"child_process": "github:jspm/nodelibs-child_process@^0.2.0-alpha",
"es6-promise": "npm:es6-promise@^3.2.1",
"events": "github:jspm/nodelibs-events@^0.2.0-alpha",
"fs": "github:jspm/nodelibs-fs@^0.2.0-alpha",
"http": "github:jspm/nodelibs-http@^0.2.0-alpha",
"os": "github:jspm/nodelibs-os@^0.2.0-alpha",
"path": "github:jspm/nodelibs-path@^0.2.0-alpha",
"plugin-typescript": "github:frankwallis/plugin-typescript@^4.0.16",
"process": "github:jspm/nodelibs-process@^0.2.0-alpha",
"soundcloud": "npm:soundcloud@3.1.2",
"stream": "github:jspm/nodelibs-stream@^0.2.0-alpha",
"url": "github:jspm/nodelibs-url@^0.2.0-alpha",
"util": "github:jspm/nodelibs-util@^0.2.0-alpha"
},
"overrides": {
"npm:inherits@2.0.1": {
"ignore": [
"test.js"
]
},
"npm:typescript@1.8.10": {
"browser": {},
"map": {
"buffer": "@empty",
"child_process": "@empty",
"fs": "@empty",
"path": "@empty",
"process": "@empty",
"readline": "@empty"
}
}
}
}
}