-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 966 Bytes
/
package.json
File metadata and controls
39 lines (39 loc) · 966 Bytes
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
{
"name": "cbuild",
"version": "0.1.8",
"description": "Use SystemJS with npm instead of jspm",
"main": "dist/cbuild.js",
"typings": "dist/cbuild.d.ts",
"bin": {
"cbuild": "cbuild"
},
"scripts": {
"tsc": "tsc",
"docts": "docts",
"lint": "tslint -c src/tslint.json -p src/tsconfig.json",
"prepublish": "npm run lint && tsc -p src",
"test": "node cbuild --help"
},
"author": "Juha Järvi",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/charto/cbuild.git"
},
"bugs": {
"url": "https://github.com/charto/cbuild/issues"
},
"homepage": "https://github.com/charto/cbuild#readme",
"dependencies": {
"@types/bluebird": "^3.5.20",
"@types/node": "^9.4.0",
"bluebird": "^3.5.1",
"browser-resolve": "~1.11.2",
"commander": "~2.13.0",
"systemjs-builder": "~0.16.12"
},
"devDependencies": {
"tslint": "^5.8.0",
"typescript": "^2.6.2"
}
}