This repository has been archived by the owner on Apr 21, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.67 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
{
"name": "sprintify-formly",
"version": "1.1.9",
"description": "Vue Formly",
"main": "dist/index.js",
"engines": {
"node": ">=7.0.0"
},
"scripts": {
"build": "webpack",
"watch": "webpack --watch",
"test": "mocha-webpack --webpack-config webpack-test.config.js --require test/setup.js test/**/*.spec.js --watch",
"test-ci": "mocha-webpack --webpack-config webpack-test.config.js --require test/setup.js test/**/*.spec.js",
"cover": "cross-env NODE_ENV=coverage nyc --reporter=lcov --reporter=text npm run test-ci",
"prepublish": "npm run test-ci && npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/witify/formly.git"
},
"author": "François Lévesque",
"license": "ISC",
"bugs": {
"url": "https://github.com/witify/formly/issues"
},
"homepage": "https://github.com/witify/formly#readme",
"dependencies": {
"axios": "0.*",
"vue": "2.*"
},
"devDependencies": {
"babel-core": "^6.1",
"babel-loader": "^7.1.4",
"babel-preset-es2015": "^6.24.1",
"cross-env": "^5.1.3",
"expect": "^22.4.0",
"istanbul-instrumenter-loader": "^3.0.0",
"jsdom": "^11.6.2",
"jsdom-global": "^3.0.2",
"mocha": "^5.0.2",
"mocha-webpack": "^1.0.1",
"moxios": "^0.4.0",
"nyc": "^11.4.1",
"sinon": "^4.4.2",
"uglifyjs-webpack-plugin": "^1.2.0",
"vue-loader": "^14.1.1",
"vue-template-compiler": "^2.5.13",
"vue-test-utils": "^1.0.0-beta.11",
"webpack": "^3.11.0",
"webpack-bundle-analyzer": "^2.11.1",
"webpack-node-externals": "^1.6.0"
},
"nyc": {
"include": [
"src/**/*.js"
],
"instrument": false,
"sourceMap": false
}
}