-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 1.97 KB
/
package.json
File metadata and controls
71 lines (71 loc) · 1.97 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": "cruddle",
"version": "1.0.0-alpha.5",
"main": "dist/index.js",
"bugs": "https://github.com/creativecuriositystudio/cruddle/issues",
"keywords": [
"crud",
"ui",
"angular",
"html",
"web",
"model",
"data",
"typescript"
],
"homepage": "https://github.com/creativecuriositystudio/cruddle",
"license": "MIT",
"description": "Simplifying CRUDL screen development using ModelSafe",
"contributors": [
"Zack Corr <zack@z0w0.me> (http://z0w0.me)"
],
"scripts": {
"prepush": "npm run lint",
"prepublish": "npm run build",
"publish": "npm run docs:deploy",
"build": "ngc",
"docs": "compodoc -d docs -p tsconfig.json",
"docs:deploy": "npm run docs && gh-pages -d docs",
"test": "mocha --opts mocha.opts",
"test:auto": "mocha --opts mocha.opts --watch",
"lint": "tslint --format stylish --type-check --project tsconfig.json",
"clean": "rm -rf dist"
},
"types": "./dist/index.d.ts",
"peerDependencies": {
"@angular/core": "^4.0.0",
"modelsafe": ">=0.7.1 <0.8.0"
},
"devDependencies": {
"@angular/animations": "^4.1.0",
"@angular/common": "^4.1.0",
"@angular/compiler": "^4.1.0",
"@angular/compiler-cli": "^4.1.0",
"@angular/core": "^4.1.0",
"@angular/platform-browser": "^4.1.0",
"@angular/platform-browser-dynamic": "^4.1.0",
"@angular/platform-server": "^4.1.0",
"@types/chai": "^3.4.35",
"@types/mocha": "^2.2.33",
"@types/reflect-metadata": "^0.0.5",
"chai": "^3.5.0",
"compodoc": "0.0.41",
"gh-pages": "^0.12.0",
"husky": "^0.13.2",
"mocha": "^3.2.0",
"modelsafe": ">=0.7.1 <0.8.0",
"reflect-metadata": "^0.1.8",
"rxjs": "^5.0.0",
"ts-node": "^2.1.0",
"tslint": "^5.0.0",
"tslint-config-ccs": ">=0.5.1 <0.6",
"typescript": "~2.2.2",
"zone.js": "0.8.6"
},
"dependencies": {
"@types/inflection": "^1.5.28",
"@types/lodash": "^4.14.53",
"inflection": "^1.12.0",
"lodash": "^4.17.4"
}
}