forked from json-schema-form/angular-schema-form
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
83 lines (83 loc) · 2.72 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": "angular-schema-form",
"version": "1.0.0-alpha.5",
"description": "Create complex forms from a JSON schema with angular.",
"repository": {
"type": "git",
"url": "http://github.com/json-schema-form/angular-schema-form.git"
},
"main": "dist/angular-schema-form.js",
"filename": "dist/angular-schema-form.min.js",
"homepage": "https://github.com/json-schema-form/angular-schema-form#readme",
"scripts": {
"build": "webpack",
"dist": "webpack --config webpack.config.dist.js",
"watch": "webpack --watch",
"testlinux": "rm -fr coverage && ./node_modules/karma/bin/karma start --single-run --browsers PhantomJS karma.conf.js && find coverage/ -name lcov.info -print0 | xargs -0 cat | ./node_modules/coveralls/bin/coveralls.js",
"lint": "eslint src/**/*.js",
"test": "karma start karma.conf.js --log-level debug --single-run",
"tests": "karma start karma.conf.js --log-level debug --auto-watch"
},
"author": "json-schema-form",
"contributors": [
"David Jensen <[email protected]> (https://github.com/davidlgj)",
"Marcel J Bennett <[email protected]> (https://github.com/Anthropic)",
"Denis Dervisevic <[email protected]> (https://github.com/Dervisevic)",
"Cameron Edwards (https://github.com/cameronprattedwards)",
"Mike Marcacci (https://github.com/mike-marcacci)"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/json-schema-form/angular-schema-form/issues"
},
"keywords": [
"angular",
"angularjs",
"form",
"json",
"json-schema",
"json-schema-form",
"ui-schema",
"schema"
],
"dependencies": {
"angular": ">= 1.2",
"tv4": "~1.0.15",
"angular-sanitize": ">= 1.2"
},
"devDependencies": {
"babel-core": "^6.18.2",
"babel-loader": "^6.2.8",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-polyfill": "^6.16.0",
"babel-preset-es2015": "^6.18.0",
"chai": "^3.5.0",
"diff": "^3.2.0",
"eslint": "^3.19.0",
"eslint-config-google": "^0.7.1",
"html-webpack-externals-plugin": "^2.1.2",
"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.1",
"karma-mocha": "^1.3.0",
"karma-mocha-reporter": "^2.2.3",
"karma-phantomjs-launcher": "^1.0.2",
"karma-webpack": "^1.8.0",
"mocha": "^3.2.0",
"mocha-lcov-reporter": "^1.2.0",
"protractor": "^4.0.11",
"raw-loader": "^0.5.1",
"sinon": "^1.17.6",
"sinon-chai": "^2.8.0",
"webpack": "^2.2.1",
"webpack-dev-server": "^2.4.1"
},
"licenses": [
{
"type": "MIT",
"url": "https://raw.githubusercontent.com/json-schema-form/angular-schema-form/master/LICENSE"
}
]
}