-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.68 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.68 KB
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
{
"name": "ic-formly",
"version": "1.4.1",
"description": "This component is a form with validation and more using only javascript objects",
"author": "Walker Leite <walker@incuca.com.br>",
"main": "dist/ic-formly.min.js",
"license": "apache 2.0",
"scripts": {
"lint": "eslint src/**/*.vue",
"build": "poi build --format cjs --dist dist; poi build --format umd --dist dist/umd",
"build:doc": "vue-styleguidist build",
"serve": "vue-styleguidist server",
"test": "poi test",
"test:watch": "poi test --watch",
"test:cov": "poi test --coverage"
},
"keywords": [
"vue",
"component"
],
"files": [
"src/",
"dist/"
],
"dependencies": {
"flat": "^4.0.0",
"vue": "^2.5.3",
"vue-formly": "github:klarkc/vue-formly#build",
"vue-formly-bootstrap": "^2.3.0"
},
"devDependencies": {
"babel-preset-env": "^1.3.2",
"babel-preset-stage-2": "^6.22.0",
"bootstrap": "^4.0.0-beta.2",
"chai": "^4.1.2",
"conventional-changelog-cli": "^1.3.5",
"css-loader": "^0.28.7",
"eslint": "^4.11.0",
"eslint-plugin-vue": "beta",
"karma-chai": "^0.1.0",
"karma-phantomjs-launcher": "^1.0.4",
"karma-phantomjs-shim": "^1.5.0",
"node-glob": "^1.2.0",
"poi": "^9.5.2",
"poi-preset-karma": "^9.2.1",
"style-loader": "^0.19.1",
"typescript": "^2.6.1",
"vue-docgen-api": "^2.2.3",
"vue-styleguidist": "^1.3.3",
"vue-webpack-loaders": "^1.0.6",
"webpack": "^3.1.0"
},
"bit": {
"env": {
"compiler": "bit.envs/bundlers/vue@2.6.15",
"tester": "bit.envs/testers/karma-mocha@1.7.1"
},
"componentsDefaultDirectory": "components/{name}",
"packageManager": "npm"
}
}