-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.13 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
{
"name": "formly",
"version": "0.0.2",
"description": "A simple form helper for Vue.js",
"main": "dist/Formly.js",
"scripts": {
"compile": "./node_modules/.bin/babel -d dist/ src/",
"prepublish": "npm run compile"
},
"repository": {
"type": "git",
"url": "https://github.com/codeunitedio/formly.git"
},
"keywords": [
"utils",
"vuejs",
"vue",
"forms"
],
"author": "Mirza Pasic <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/codeunitedio/formly/issues"
},
"homepage": "https://github.com/codeunitedio/formly#readme",
"dependencies": {
"axios": "^0.15.3",
"lodash": "^4.17.4"
},
"devDependencies": {
"babel-cli": "^6.22.2",
"babel-plugin-transform-async-to-generator": "^6.22.0",
"babel-plugin-transform-runtime": "^6.22.0",
"babel-preset-es2015": "^6.22.0",
"babel-preset-stage-2": "^6.22.0",
"babel-plugin-transform-object-assign": "^6.22.0",
"eslint": "^3.8.1",
"eslint-config-vue": "^2.0.1",
"eslint-plugin-html": "^1.7.0",
"eslint-plugin-jsx-a11y": "^3.0.2",
"eslint-plugin-vue": "^1.0.0"
}
}