forked from charto/cbuild
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1012 Bytes
/
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
{
"name": "cbuild",
"version": "0.1.2",
"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 src/*.ts",
"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": {
"bluebird": "^3.4.6",
"browser-resolve": "~1.11.2",
"commander": "~2.10.0",
"systemjs-builder": "~0.15.33"
},
"devDependencies": {
"@types/bluebird": "^3.0.35",
"@types/commander": "^2.3.30",
"@types/node": "^8.0.3",
"docts": "~0.1.0",
"tslint": "^4.0.1",
"typescript": "^2.0.8"
}
}