forked from eclipsesource/jsonforms
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
82 lines (82 loc) · 3.58 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
{
"name": "jsonforms",
"version": "0.1.3",
"description": "Generating forms for JSON schema",
"repository": "https://github.com/eclipsesource/jsonforms",
"bugs": "https://github.com/eclipsesource/jsonforms/issues",
"homepage": "http://github.eclipsesource.com/jsonforms/",
"license": "MIT",
"main": "index.js",
"typings": "index.d.ts",
"scripts": {
"tsc": "tsc",
"dev": "webpack --config webpack/webpack.dev.js && webpack-dev-server --config webpack/webpack.dev.js --NODE_ENV=dev --inline",
"dev-bootstrap": "webpack --config webpack/webpack.dev-bootstrap.js && webpack-dev-server --config webpack/webpack.dev-bootstrap.js --NODE_ENV=dev --inline",
"test": "karma start --NODE_ENV=test",
"build": "webpack --config webpack/webpack.build.js --NODE_ENV=production --display-error-details",
"build-bootstrap": "webpack --config webpack/webpack.build-bootstrap.js --NODE_ENV=production --display-error-details",
"postinstall": "typings install",
"publish-patch": "npm -no-git-tag-version version patch && npm run commit-local && npm run push-tag && npm publish",
"publish-minor": "npm -no-git-tag-version version minor && npm run commit-local && npm run push-tag && npm publish",
"publish-major": "npm -no-git-tag-version version major && npm run commit-local && npm run push-tag && npm publish",
"commit-local": "git add package.json && git commit -m \"Bump version number to $npm_package_version\"",
"push-tag": "git checkout -b auto-git-publish-$npm_package_version && git add -f dist/jsonforms.js dist/jsonforms.css dist/jsonforms-bootstrap.js dist/jsonforms-bootstrap.css components index.d.ts index.js index.js.map jsonschema.d.ts jsonschema.js jsonschema.js.map uischema.d.ts uischema.js uischema.js.map && git commit -m \"Release $npm_package_version\" && git tag -a $npm_package_version -m \"Release $npm_package_version\" && git push upstream $npm_package_version"
},
"dependencies": {
"angular": "1.5.0",
"angular-ui-bootstrap": "1.3.2",
"angular-ui-validate": "^1.2.2",
"jquery": "2.2.0",
"json-refs": "2.1.5",
"lodash": "4.0.1",
"tv4": "^1.2.7"
},
"devDependencies": {
"angular-mocks": "1.5.0",
"babel-istanbul": "0.6.0",
"bootstrap": "^3.3.6",
"bootstrap-webpack": "0.0.5",
"browser-sync": "2.11.1",
"browser-sync-webpack-plugin": "1.0.1",
"compression-webpack-plugin": "0.3.0",
"copy-webpack-plugin": "3.0.0",
"coveralls": "^2.11.9",
"css-loader": "^0.23.1",
"exports-loader": "^0.6.3",
"extract-text-webpack-plugin": "^1.0.1",
"file-loader": "0.8.5",
"html-webpack-plugin": "2.7.2",
"imports-loader": "^0.6.5",
"istanbul": "0.4.2",
"istanbul-instrumenter-loader": "0.1.3",
"jasmine": "2.4.1",
"karma": "0.13.19",
"karma-coverage": "0.5.3",
"karma-jasmine": "0.3.6",
"karma-phantomjs-launcher": "1.0.0",
"karma-phantomjs2-launcher": "^0.5.0",
"karma-sourcemap-loader": "0.3.7",
"karma-spec-reporter": "0.0.23",
"karma-typescript-preprocessor": "0.0.21",
"karma-webpack": "1.7.0",
"less": "^2.6.1",
"less-loader": "^2.2.3",
"mock-promises": "0.6.0",
"namespace-css-loader": "0.0.2",
"node-sass": "3.4.2",
"phantomjs-polyfill": "0.0.1",
"raw-loader": "0.5.1",
"sass-loader": "3.1.2",
"selenium-webdriver": "~2.53.1",
"style-loader": "^0.13.0",
"ts-loader": "0.8.0",
"tsd": "0.6.5",
"tslint-loader": "^2.1.4",
"typescript": "1.7.5",
"typings": "0.6.5",
"url-loader": "0.5.7",
"wallaby-webpack": "0.0.11",
"webpack": "1.12.12",
"webpack-dev-server": "^1.14.1"
}
}