-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
59 lines (59 loc) · 2.33 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
{
"name": "@ngpakistan/smart-ui",
"version": "1.0.0",
"description": "Simple UI Components created for the Angular Pakistan Components Workshop",
"main": "index.js",
"scripts": {
"start": "npm run build && npm run link:lib && parallelshell \"npm run watch:src\" \"npm run start:demo\" ",
"start:demo": "cd demo && npm start",
"watch:src": "ngc -p tsconfig.json -w",
"test": "echo \"Error: no test specified\" && exit 1",
"build": "rimraf dist && ngc && npm run build:copyresource",
"build:es5": "rimraf dist && ngc -p tsconfig.es5.json && npm run build:fesmes5 && npm run build:copyresource",
"build:es2015": "rimraf dist && ngc -p tsconfig.es2015.json && npm run build:fesm2015 && npm run build:copyresource",
"build:fesmes5": "rollup dist/smart-ui.es5.js -o dist/bundle/smart-ui.es5.js -f umd -n smart-ui && npm run build:postrollup",
"build:fesm2015": "rollup dist/smart-ui.es2015.js -o dist/bundle/smart-ui.es2015.js -f umd -n smart-ui.es2015 && npm run build:postrollup",
"build:postrollup": "cpx \"dist/**/*.{json,ts}\" dist/bundle",
"build:copyresource": "cpx \"{package.json,README.md}\" ./dist",
"link:lib": "cd dist && npm link && rimraf node_modules && cd .. && cd demo && npm link @ngpakistan/smart-ui",
"npm:publish": "npm run build && npm publish dist --access public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ObaidUrRehman/angular-component-workshop.git"
},
"keywords": [
"Angular"
],
"author": "Obaid",
"license": "MIT",
"bugs": {
"url": "https://github.com/ObaidUrRehman/angular-component-workshop/issues"
},
"homepage": "https://github.com/ObaidUrRehman/angular-component-workshop#readme",
"peerDependencies": {
"@angular/core": "^5.0.0",
"@angular/forms": "^5.0.0",
"@angular/common": "^5.0.0",
"rxjs": "^5.5.2",
"zone.js": "0.8.18"
},
"devDependencies": {
"@angular/cli": "^1.5.0",
"@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",
"codelyzer": "~3.2.0",
"cpx": "^1.5.0",
"parallelshell": "^3.0.2",
"rimraf": "^2.6.2",
"rollup": "^0.51.5",
"rxjs": "^5.5.2",
"ts-node": "~3.2.0",
"tslint": "~5.7.0",
"typescript": "~2.4.2",
"zone.js": "0.8.18"
}
}