-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.62 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
{
"name": "angular-select-module",
"version": "0.0.15",
"author": "Eugene Popenko",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/ywein/angular-select-module"
},
"scripts": {
"start": "npm run clean && npm run build",
"clean": "rimraf ./dist && rimraf ./aot && find ./src -name '*.js' -type f -delete && find ./src -name '*.map' -type f -delete",
"buildStyles": "npm run postcss && npm run processStyles",
"build:prod": "npm run clean && npm run buildStyles && gulp tsc",
"build:aot": "npm run buildStyles && npm run processStyles && ngc -p tsconfig-aot.json && rollup -c rollup-config.js",
"postcss": "postcss ./src/select/select.component.cssnext -r -o ./src/select/select.component.css.ts -c ./postcss.config.js",
"processStyles": "sed -i '1s/^/export const styles = ` /' src/select/select.component.css.ts && echo \\`\\; >> src/select/select.component.css.ts"
},
"private": false,
"dependencies": {
"@angular/common": "^4.4.4",
"@angular/compiler": "^4.4.4",
"@angular/core": "^4.4.4",
"@angular/forms": "^4.4.4",
"@types/core-js": "^0.9.43",
"core-js": "^2.5.1",
"postcss-nested": "^4.1.2",
"rxjs": "^5.4.3",
"zone.js": "^0.8.18"
},
"devDependencies": {
"@types/node": "^8.0.32",
"copyfiles": "^1.2.0",
"gulp": "^3.9.1",
"gulp-typescript": "^3.2.2",
"merge2": "^1.2.0",
"mkdirp": "^0.5.1",
"npm": "^4.4.4",
"postcss": "^6.0.12",
"postcss-cli": "^4.1.1",
"postcss-cssnext": "^3.0.2",
"rimraf": "^2.6.2",
"ts-node": "^3.3.0",
"tslint": "^5.7.0",
"typescript": "^2.5.3"
}
}