forked from formly-js/angular-formly-templates-bootstrap
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
72 lines (72 loc) · 2.42 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
{
"name": "angular-formly-templates-bootstrap",
"version": "0.0.0-semantically-released.0",
"author": "Astrism <[email protected]>",
"contributors": [
"Astrism <[email protected]>",
"Kent C. Dodds <[email protected]>"
],
"homepage": "http://formly-js.github.io/angular-formly-templates-bootstrap/",
"repository": {
"type": "git",
"url": "https://github.com/formly-js/angular-formly-templates-bootstrap.git"
},
"main": "dist/angular-formly-templates-bootstrap.js",
"licenses": [
{
"type": "MIT",
"url": "https://raw.githubusercontent.com/formly-js/angular-formly-templates-bootstrap/master/LICENSE"
}
],
"scripts": {
"commit": "git-cz",
"build:dev": "NODE_ENV=development webpack --config node_modules/kcd-common-tools/shared/webpack.config.js --progress --colors",
"build:prod": "NODE_ENV=production webpack --config node_modules/kcd-common-tools/shared/webpack.config.js --progress --colors",
"build": "npm run build:dev; npm run build:prod",
"test": "echo 'Still need to set these up...'",
"watch": "webpack --watch",
"start": "npm run watch",
"prepublish": "npm run build",
"postpublish": "publish-latest --user-email [email protected] --user-name formly-bot",
"semantic-release": "semantic-release pre && npm publish && semantic-release post"
},
"description": "Angular-Formly plugin which outputs bootstrap compatible form fields.",
"peerDependencies": {
"angular": "^1.2.x || >= 1.4.0-beta.0 || >= 1.5.0-beta.0",
"angular-formly": ">=6.20.0",
"api-check": ">=7.5.0",
"bootstrap": "^3.2.0"
},
"devDependencies": {
"babel-core": "5.8.25",
"babel-loader": "5.3.2",
"commitizen": "1.0.5",
"cz-conventional-changelog": "1.1.2",
"deep-extend": "0.4.0",
"ghooks": "0.3.2",
"jshint": "2.8.0",
"jshint-loader": "0.8.3",
"kcd-common-tools": "1.0.0-beta.23",
"lodash-node": "3.10.1",
"ng-annotate": "1.0.2",
"ng-annotate-loader": "0.0.10",
"node-libs-browser": "0.5.3",
"publish-latest": "1.1.3",
"raw-loader": "0.5.1",
"semantic-release": "4.3.5",
"validate-commit-msg": "1.0.0",
"webpack": "1.12.2"
},
"license": "MIT",
"czConfig": {
"path": "node_modules/cz-conventional-changelog"
},
"config": {
"ghooks": {
"commit-msg": "./node_modules/.bin/validate-commit-msg"
}
},
"kcdCommon": {
"webpack": "scripts/webpack-overrides.js"
}
}