forked from hotforfeature/origami
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
110 lines (110 loc) · 4.03 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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
{
"name": "@codebakery/origami",
"version": "2.0.2",
"description": "Angular + Polymer",
"keywords": [
"Angular",
"Polymer"
],
"author": "Andrew Mitchell <[email protected]>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/hotforfeature/origami.git"
},
"homepage": "https://github.com/hotforfeature/origami#readme",
"bugs": {
"url": "https://github.com/hotforfeature/origami/issues"
},
"scripts": {
"clean": "rimraf out-tsc/ dist/ reports/",
"lint": "tslint --project origami/tsconfig.json",
"bower": "bower install",
"test": "karma start",
"test:es5": "ES5=true karma start",
"test:watch": "karma start --auto-watch --no-single-run --browsers Chrome",
"test:ci": "CI=true karma start",
"test:ci:es5": "ES5=true CI=true karma start",
"test:ci:ie11": "IE11=true ES5=true CI=true karma start",
"precommit": "npm run lint",
"commitmsg": "validate-commit-msg",
"commit": "git-cz",
"ngc:es6": "ngc -p origami/tsconfig.json",
"ngc:es5": "ngc -p origami/tsconfig.es5.json",
"ngc": "npm run ngc:es6 && npm run ngc:es5",
"rollup:es6": "rollup -c origami/rollup.config.js -m --format es --output dist/@codebakery/origami.js -- out-tsc/es6/origami.js",
"rollup:es5": "rollup -c origami/rollup.config.js -m --format es --output dist/@codebakery/origami.es5.js -- out-tsc/es5/origami.js",
"rollup:umd": "rollup -c origami/rollup.config.js --format umd --output dist/bundles/origami.umd.js -- dist/@codebakery/origami.es5.js",
"rollup:umd:min": "rollup -c origami/rollup.config.js --format umd --output dist/bundles/origami.umd.min.js -- dist/@codebakery/origami.es5.js",
"rollup": "npm run rollup:es6 && npm run rollup:es5 && npm run rollup:umd && npm run rollup:umd:min",
"copy": "cpy '**/*.d.ts' '*.metadata.json' ../../dist/ --parents --cwd out-tsc/es6/ && cpy README.md ./dist/ && node cp-package.js origami/package.json dist/package.json",
"prebuild": "npm run clean",
"build": "npm run ngc && npm run rollup && npm run copy",
"postbuild": "cpy patch-cli.js dist/",
"release": "standard-version",
"prepare": "npm run build"
},
"dependencies": {
"tslib": "^1.7.1"
},
"peerDependencies": {
"@angular/cli": ">=1.6.3 < 1.8",
"@angular/core": ">=4.0.0",
"@angular/forms": ">=4.0.0",
"@angular/platform-browser": ">=4.0.0",
"rxjs": "^5.0.1"
},
"devDependencies": {
"@angular/common": "^5.0.0",
"@angular/compiler": "^5.0.0",
"@angular/compiler-cli": "^5.0.0",
"@angular/core": "^5.0.0",
"@angular/forms": "^5.0.0",
"@angular/platform-browser": "^5.0.0",
"@angular/platform-browser-dynamic": "^5.0.0",
"@types/jasmine": "^2.5.47",
"@types/node": "^7.0.12",
"awesome-typescript-loader": "^3.1.2",
"babel-core": "^6.26.0",
"babel-loader": "^7.1.2",
"babel-preset-es2015": "^6.24.1",
"bower": "^1.8.0",
"codelyzer": "^2.1.1",
"commitizen": "^2.9.6",
"cpy-cli": "^1.0.1",
"cz-conventional-changelog": "^2.0.0",
"husky": "^0.13.3",
"istanbul-instrumenter-loader": "^2.0.0",
"jasmine-core": "^2.5.2",
"karma": "^1.6.0",
"karma-chrome-launcher": "^2.0.0",
"karma-cli": "^1.0.1",
"karma-coverage-istanbul-reporter": "^1.2.0",
"karma-html-reporter": "^0.2.7",
"karma-jasmine": "^1.1.0",
"karma-jasmine-html-reporter": "^0.2.2",
"karma-mocha-reporter": "^2.2.3",
"karma-safari-launcher": "^1.0.0",
"karma-sauce-launcher": "^1.1.0",
"karma-webpack": "^2.0.3",
"polymer-webpack-loader": "^2.0.0",
"rimraf": "^2.6.1",
"rollup": "^0.43.0",
"rollup-plugin-node-resolve": "^3.0.0",
"rollup-plugin-uglify": "^2.0.1",
"rxjs": "^5.5.2",
"script-loader": "^0.7.2",
"source-map-loader": "^0.2.1",
"standard-version": "^4.0.0",
"tslint": "^4.5.1",
"typescript": "^2.4.2",
"validate-commit-msg": "^2.11.2",
"webpack": "^2.4.1",
"zone.js": "^0.8.4"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}