-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 2.55 KB
/
package.json
File metadata and controls
71 lines (71 loc) · 2.55 KB
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
{
"name": "@lchemy/ng-forms",
"version": "1.0.0-beta.0",
"description": "",
"author": "Jesse Zhang (http://jessezhang.me/)",
"repository": {
"type": "git",
"url": "https://github.com/lchemy/ng-forms.git"
},
"scripts": {
"build": "npm run build:compile && npm run build:copy-compiled && npm run build:fesm && npm run build:es5 && npm run build:umd && npm run build:copy-info",
"build:compile": "ngc -p tsconfig.build.json",
"build:copy-compiled": "cpy \"**/*.{metadata.json,d.ts}\" \"../dist\" --cwd=compiled --parents",
"build:copy-info": "cpy README.md .gitignore dist && node ./scripts/copy-package",
"build:es5": "rollup -c rollup.es5.config.js",
"build:fesm": "rollup -c rollup.fesm.config.js",
"build:umd": "rollup -c rollup.umd.config.js",
"clean": "del-cli ./coverage ./dist ./docs ./test-tmp ./compiled",
"docs": "compodoc -p ./tsconfig.json -d docs -n '@lchemy/ng-forms'",
"lint": "tslint -c ./tslint.json -p ./tsconfig.json -t stylish --type-check",
"postbuild": "del-cli ./test-tmp ./compiled",
"prebuild": "npm run clean && npm run lint && npm run test",
"predocs": "del-cli ./docs",
"test": "karma start"
},
"license": "MIT",
"dependencies": {
"@angular/common": "^7.2.4",
"@angular/core": "^7.2.4",
"@angular/forms": "^7.2.4",
"@angular/platform-browser": "^7.2.4",
"@angular/platform-browser-dynamic": "^7.2.4",
"@lchemy/model": "*",
"reflect-metadata": "^0.1.13",
"rxjs": "^6.4.0",
"rxjs-compat": "^6.4.0",
"zone.js": "^0.8.12"
},
"devDependencies": {
"@angular/compiler": "^7.2.4",
"@angular/compiler-cli": "^7.2.4",
"@angular/platform-browser-dynamic": "^7.2.4",
"@compodoc/compodoc": "^1.0.0-beta.12",
"@types/jasmine": "^2.5.53",
"@types/node": "^8.0.9",
"codelyzer": "^4.5.0",
"cpy-cli": "^1.0.1",
"del-cli": "^1.1.0",
"electron": "^1.7.3",
"istanbul-instrumenter-loader": "^2.0.0",
"jasmine-core": "^2.6.4",
"karma": "^1.7.0",
"karma-chrome-launcher": "^2.2.0",
"karma-coverage": "^1.1.1",
"karma-coverage-istanbul-reporter": "^1.3.0",
"karma-electron": "^5.2.1",
"karma-jasmine": "^1.1.0",
"karma-sourcemap-loader": "^0.3.7",
"karma-spec-reporter": "0.0.31",
"karma-webpack": "^2.0.4",
"rollup": "^0.45.0",
"rollup-plugin-buble": "^0.15.0",
"rollup-plugin-node-resolve": "^3.0.0",
"rollup-plugin-sourcemaps": "^0.4.2",
"ts-loader": "^2.2.2",
"tslint": "^5.5.0",
"typescript": "~3.2.4",
"wallaby-webpack": "0.0.38",
"webpack": "^3.1.0"
}
}