-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathpackage.json
74 lines (74 loc) · 2.24 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
{
"name": "rollup-plugin-angular",
"version": "0.5.3",
"description": "Angular2 template and styles inliner",
"main": "dist/rollup-plugin-angular.js",
"module": "dist/rollup-plugin-angular.esm.js",
"scripts": {
"build": "rollup -c",
"prepublish": "npm run build",
"test": "npm run build && npm run mocha:test && npm run karma:test",
"karma:test": "./node_modules/karma/bin/karma start karma.conf.js",
"mocha:js": "mocha test/mochajs/index.js --compilers js:buble/register --compilers js:babel-register; exit 0",
"mocha:ts": "mocha test/mochats/index.ts --compilers ts:ts-node/register --timeout 2000; exit 0",
"mocha:test": "npm run build && npm run mocha:js && npm run mocha:ts; exit 0;"
},
"keywords": [
"angular2",
"template",
"styles",
"inliner",
"rollup-plugin"
],
"files": [
"dist"
],
"author": "Felix Itzenplitz",
"repository": {
"type": "git",
"url": "https://github.com/cebor/rollup-plugin-angular.git"
},
"license": "MIT",
"dependencies": {
"colors": "^1.1.2",
"magic-string": "^0.22.4",
"replace": "^0.3.0",
"rollup-pluginutils": "^2.0.1"
},
"devDependencies": {
"@angular/common": "^4.3.5",
"@angular/compiler": "^4.3.5",
"@angular/core": "^4.3.5",
"@angular/platform-browser": "^4.3.5",
"@angular/platform-browser-dynamic": "^4.3.5",
"@types/chai": "^4.0.4",
"@types/jasmine": "^2.5.54",
"@types/karma": "^0.13.36",
"@types/mocha": "^2.2.42",
"@types/node": "^8.0.24",
"babel-register": "^6.26.0",
"chai": "^4.1.1",
"clean-css": "^4.1.7",
"html-minifier": "^3.5.3",
"jasmine": "^2.7.0",
"jasmine-core": "^2.7.0",
"karma": "^1.7.0",
"karma-chrome-launcher": "^2.2.0",
"karma-coverage": "^1.1.1",
"karma-firefox-launcher": "^1.0.1",
"karma-jasmine": "^1.1.0",
"karma-rollup-preprocessor": "^4.0.4",
"mocha": "^3.5.0",
"node-sass": "^4.5.3",
"reflect-metadata": "^0.1.10",
"rollup": "^0.48.2",
"rollup-plugin-buble": "^0.15.0",
"rollup-plugin-commonjs": "^8.2.0",
"rollup-plugin-node-resolve": "^3.0.0",
"rollup-plugin-typescript": "^0.8.1",
"rxjs": "^5.4.3",
"ts-node": "^3.3.0",
"typescript": "^2.5.1",
"zone.js": "^0.8.16"
}
}