-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
74 lines (74 loc) · 2.71 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": "@rally/angular-yuzi",
"version": "0.8.1",
"description": "A fully accessible and customizable common ui library for the web.",
"author": "Rally Health, Inc.",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/rallyhealth/angular-yuzi.git"
},
"publishConfig": {
"registry": "https://artifacts.werally.in/artifactory/api/npm/npm-local"
},
"private": true,
"homepage": "https://github.com/rallyhealth/angular-yuzi",
"bugs": {
"url": "https://github.com/rallyhealth/angular-yuzi/issues"
},
"keywords": [
"accessible",
"ui",
"rally",
"dropdown",
"508",
"wcag"
],
"main": "./src/index.ts",
"module": "./src/index.ts",
"scripts": {
"build": "npm run ngc && npm run ng-inline && npm run rollup",
"clean": "del 'node_modules/**/!(*)' dist src/**/*.js src/**/*.js.map src/**/*.d.ts **/*.ngfactory.ts **/*.ngsummary.json src/**/*.css",
"copy:src": "copyfiles README.md src/**/*.css src/**/*.html dist",
"copy:package": "copyfiles package.json dist",
"ng-inline": "ng2-inline -o ./ -r dist/**/*.component.js",
"ngc": "ngc -p tsconfig.json",
"package:main": "json -I -f dist/package.json -e 'this.main=\"bundles/yuzi.umd.js\"; this.module=\"src/index.js\"; this.typings=\"src/index.d.ts\"'",
"package:deps": "json -I -f dist/package.json -e 'this.peerDependencies=this.dependencies; delete this.dependencies; delete this.devDependencies; delete this.scripts'",
"package:public": "json -I -f dist/package.json -e 'this.private=false'",
"package": "npm run copy:package && npm run package:main && npm run package:deps && npm run package:public",
"prebuild": "npm run clean && npm run stylus && npm run copy:src && npm run package",
"publish:build": "npm run build && npm publish dist",
"rollup": "rollup -c rollup.config.js",
"stylus": "stylus src/**/*.styl --use jeet"
},
"dependencies": {
"@angular/common": "^4.1.0",
"@angular/compiler": "^4.1.0",
"@angular/compiler-cli": "^4.1.0",
"@angular/core": "^4.1.0",
"@angular/forms": "^4.1.0",
"@angular/platform-browser": "^4.1.0",
"@angular/router": "^4.1.0",
"core-js": "^2.4.1",
"rxjs": "^5.3.1",
"zone.js": "^0.8.9"
},
"devDependencies": {
"@angular/cli": "^1.0.1",
"angular2-inline-template-style": "^1.1.0",
"copyfiles": "^1.2.0",
"del-cli": "^0.2.1",
"jeet": "^7.1.0",
"json": "^9.0.6",
"kouto-swiss": "^1.1.0",
"rollup": "^0.41.6",
"rollup-plugin-angular-inline": "^1.0.0",
"rollup-plugin-commonjs": "^8.0.2",
"rollup-plugin-node-resolve": "^3.0.0",
"rollup-plugin-uglify": "^1.0.2",
"stylus": "^0.54.5",
"tslint": "^5.2.0",
"typescript": "^2.3.2"
}
}