This repository has been archived by the owner on May 6, 2020. It is now read-only.
forked from aminpaks/typescript-library-bundler
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
94 lines (94 loc) · 2.75 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
{
"name": "typescript-library-bundler",
"description": "Bundle a typescript library and makes it ready to ship for ES6, ES5, CommonJS and UMD",
"version": "0.2.3",
"license": "MIT",
"bin": {
"tsb": "./dist/cli.js"
},
"main": "dist/main.js",
"typings": "dist/main.d.ts",
"scripts": {
"clean": "npm-run-all -p clean:*",
"clean:dist": "rimraf dist",
"clean:build": "rimraf build",
"compile": "npm-run-all -p compile:*",
"compile:lib": "tsc --target es5 --declaration true --sourceMap false",
"compile:test": "tsc -p test",
"integration": "node integration/run.js",
"lint": "npm-run-all -p lint:*",
"lint:lib": "tslint -p tsconfig.json",
"lint:test": "tslint -p test",
"debug": "node --inspect-brk ./debug-ts.js",
"debug:cli": "ts-node --inspect-brk ./src/cli.ts",
"test": "npm-run-all test:*",
"test:lib": "mocha --reporter spec --colors \"build/test/**/*.spec.js\"",
"verify": "npm-run-all lint clean compile test",
"build": "npm-run-all clean compile:lib",
"prepublishOnly": "npm-run-all verify build"
},
"keywords": [
"typescript",
"angular",
"library",
"bundle",
"bundler"
],
"repository": {
"type": "git",
"url": "https://github.com/aminpaks/typescript-library-bundler"
},
"bugs": {
"url": "https://github.com/aminpaks/typescript-library-bundler/issues"
},
"dependencies": {
"@angular/compiler": "^4.3.5",
"@angular/compiler-cli": "^4.3.5",
"camelcase": "^4.1.0",
"clean-css": "^4.1.7",
"glob": "^7.1.2",
"html-minifier": "^3.5.3",
"less": "^2.7.2",
"minimist": "^1.2.0",
"node-sass": "^4.5.3",
"rollup": "^0.47.6",
"rollup-plugin-absolute-module-fix": "^0.0.2",
"rollup-plugin-commonjs": "^8.2.1",
"rollup-plugin-node-resolve": "^3.0.0",
"rollup-plugin-sourcemaps": "^0.4.2",
"rollup-plugin-uglify": "^2.0.1"
},
"devDependencies": {
"@angular/common": "^4.3.5",
"@angular/core": "^4.3.5",
"@angular/http": "^4.3.5",
"@angular/platform-browser": "^4.3.5",
"@types/camelcase": "^4.1.0",
"@types/chai": "^4.0.4",
"@types/glob": "^5.0.31",
"@types/html-minifier": "^1.1.30",
"@types/lodash": "^4.14.73",
"@types/lodash-es": "^4.14.6",
"@types/minimist": "^1.2.0",
"@types/mocha": "^2.2.42",
"@types/node": "^8.0.24",
"@types/node-sass": "^3.10.32",
"@types/rollup": "^0.41.1",
"angular2-jwt": "^0.2.3",
"chai": "^4.1.1",
"chalk": "^2.1.0",
"lodash": "^4.17.4",
"lodash-es": "^4.17.4",
"mocha": "^3.5.3",
"npm-run-all": "^4.0.2",
"rimraf": "^2.6.1",
"rxjs": "^5.4.3",
"ts-node": "^3.3.0",
"tslint": "^5.8.0",
"typescript": "^2.5.2",
"zone.js": "^0.8.16"
},
"engines": {
"node": ">=6.5.0"
}
}