This repository has been archived by the owner on Apr 30, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
70 lines (70 loc) · 2.33 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
{
"name": "angular-formly-templates-foundation",
"version": "1.0.0-beta.3",
"author": "Kent C. Dodds <[email protected]>",
"contributors": [
"Kent C. Dodds <[email protected]>"
],
"homepage": "http://formly-js.github.io/angular-formly-templates-foundation/",
"repository": {
"type": "git",
"url": "git://github.com/formly-js/angular-formly-templates-foundation.git"
},
"main": "dist/angular-formly-templates-foundation.js",
"licenses": [
{
"type": "MIT",
"url": "https://raw.githubusercontent.com/formly-js/angular-formly-templates-foundation/master/LICENSE"
}
],
"scripts": {
"build:dist": "webpack",
"build:minify": "webpack --config webpack.config.minify.js",
"build": "npm run build:dist; npm run build:minify",
"test": "karma start karma.conf.js",
"test:single": "karma start karma.conf.js --single-run",
"test:ci": "karma start karma.conf.ci.js",
"watch": "webpack --watch",
"start": "npm run watch",
"release": "npm run build && with-package git commit -am pkg.version && with-package git tag pkg.version && git push && npm publish && git push --tags",
"release:beta": "npm run release && npm run tag:beta",
"tag:beta": "with-package npm dist-tag add [email protected] beta"
},
"description": "Angular-Formly plugin which outputs foundation compatible form fields.",
"peerDependencies": {
"angular": "^1.2.x || >= 1.4.0-beta.0 || >= 1.5.0-beta.0",
"angular-formly": ">=4.0.5",
"api-check": ">=6.0.10"
},
"devDependencies": {
"angular": "1.5.0",
"angular-formly": "7.5.0",
"api-check": "7.5.5",
"babel-core": "^4.5.5",
"babel-loader": "^4.0.0",
"chai": "3.5.0",
"deep-extend": "^0.3.2",
"foundation-sites": "^5.5.2",
"jshint": "2.6.0",
"jshint-loader": "^0.8.3",
"karma": "0.13.21",
"karma-chai": "0.1.0",
"karma-chrome-launcher": "0.2.2",
"karma-firefox-launcher": "0.1.7",
"karma-mocha": "0.2.2",
"karma-webpack": "1.7.0",
"lodash-node": "^2.4.1",
"mocha": "2.4.5",
"ng-annotate": "1.2.1",
"ng-annotate-loader": "0.1.0",
"raw-loader": "^0.5.1",
"webpack": "^1.6.0",
"with-package": "0.2.0"
},
"bugs": {
"url": "https://github.com/formly-js/angular-formly-templates-foundation/issues"
},
"dependencies": {},
"keywords": [],
"license": "MIT"
}