forked from guillotinaweb/ngx-schema-form
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
65 lines (65 loc) · 1.77 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
{
"name": "angular2-schema-form",
"version": "1.0.1",
"description": "Angular2 Schema Form (DISCLAIMER: it is not related to angular-schema-form)",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"scripts": {
"clean": "rimraf dist/",
"test": "cd tests/src/app && ln -s ../../../src/ ./lib && cd ../.. && ng test --single-run",
"build:aot": "ngc -p tsconfig.json",
"build:jit": "tsc -p tsconfig.json",
"build": "npm run clean && npm run build:aot",
"install:peers": "npm-install-peers"
},
"repository": {
"type": "git",
"url": "git+https://github.com/makinacorpus/angular2-schema-form"
},
"keywords": [
"angularjs",
"angular",
"javascript",
"angular2",
"schema",
"form",
"schema form"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/makinacorpus/angular2-schema-form/issues"
},
"contributors": [
"Frank Bessou <[email protected]>",
"Eric Brehault <[email protected]>",
"Simon Bats <[email protected]>",
"Ramon Navarro Bosch <[email protected]>"
],
"dependencies": {
"body-parser": "^1.15.1",
"methods": "^1.1.2",
"raw-loader": "0.5.1",
"z-schema": "^3.17.0"
},
"peerDependencies": {
"@angular/animations": "^4.2.5",
"@angular/common": "^4.2.5",
"@angular/forms": "^4.2.5",
"@angular/compiler": "^4.2.5",
"@angular/core": "^4.2.5",
"@angular/http": "^4.2.5",
"@angular/platform-browser": "^4.2.5",
"core-js": "2.4.1",
"rxjs": "^5.1.0",
"typescript": "2.2.2",
"zone.js": "^0.8.4"
},
"devDependencies": {
"@angular/compiler-cli": "^4.2.5",
"@angular/platform-server": "^4.2.5",
"@types/jasmine": "2.5.38",
"@types/node": "6.0.60",
"npm-install-peers": "^1.1.0",
"rimraf": "^2.5.4"
}
}