-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathpackage.json
83 lines (83 loc) · 2.52 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
75
76
77
78
79
80
81
82
83
{
"name": "json-schema-form-core",
"version": "1.0.0-alpha.5",
"description": "JSON-Schema and JSON-UI-Schema utilities for form generation.",
"main": "dist/json-schema-form-core.js",
"scripts": {
"build": "webpack",
"watch": "webpack --watch",
"dist-untested": "webpack --config webpack.config.dist.js",
"lint": "eslint src/**/*.js",
"tslint": "tslint \"src/**/*.ts\"",
"test": "mocha --opts .mocha",
"testdoc": "mocha --opts .mocha && mocha --opts .mocha.md > docs/test.md"
},
"author": "json-schema-form",
"contributors": [
"David Jensen <david.lgj@gmail.com> (https://github.com/davidlgj)",
"Marcel J Bennett <iamanthropic@gmail.com> (https://github.com/Anthropic)"
],
"license": "MIT",
"licenses": [
{
"type": "MIT",
"url": "https://raw.githubusercontent.com/json-schema-form/json-schema-form-core/master/LICENSE"
}
],
"homepage": "https://github.com/json-schema-form/json-schema-form-core#readme",
"bugs": {
"url": "https://github.com/json-schema-form/json-schema-form-core/issues"
},
"repository": {
"type": "git",
"url": "http://github.com/json-schema-form/json-schema-form-core.git"
},
"keywords": [
"angular-schema-form",
"json-schema-form-core",
"json-schema-form",
"json-ui-schema",
"json-schema"
],
"dependencies": {
"tv4": "^1.2.7"
},
"devDependencies": {
"@types/chai": "^3.4.34",
"@types/mocha": "^2.2.33",
"@types/node": "^6.0.42",
"babel-core": "^6.18.2",
"babel-loader": "^6.2.9",
"babel-plugin-syntax-async-functions": "^6.13.0",
"babel-plugin-transform-async-to-generator": "^6.22.0",
"babel-plugin-transform-flow-strip-types": "^6.21.0",
"babel-polyfill": "^6.20.0",
"babel-preset-es2015": "^6.18.0",
"babel-preset-latest": "^6.16.0",
"babel-preset-stage-0": "^6.22.0",
"babel-register": "^6.18.0",
"chai": "^3.5.0",
"eslint": "^3.19.0",
"eslint-config-google": "^0.7.1",
"json-refs": "^2.1.6",
"karma": "^1.3.0",
"karma-babel-preprocessor": "^6.0.1",
"karma-chai-sinon": "^0.1.5",
"karma-coverage": "^1.1.1",
"karma-growler-reporter": "0.0.2",
"karma-mocha": "^1.3.0",
"karma-phantomjs-launcher": "^1.0.2",
"karma-webpack": "^1.8.1",
"mocha": "^3.2.0",
"objectpath": "^1.2.1",
"sinon": "^1.17.7",
"sinon-chai": "^2.8.0",
"ts-loader": "^1.2.2",
"ts-node": "^1.2.1",
"tslint": "^4.0.2",
"tslint-loader": "^3.2.1",
"typescript": "~2.0.3",
"tv4": "^1.2.7",
"webpack": "^2.2.1"
}
}