-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.85 KB
/
Copy pathpackage.json
File metadata and controls
64 lines (64 loc) · 1.85 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
62
63
64
{
"name": "vue-model-factories",
"version": "0.0.19",
"description": "Laravel inspired model factories for Vue (or any front-end application)",
"main": "lib/vue-model-factories.js",
"typings": "lib/index.d.ts",
"jsnext:main": "src/index.js",
"scripts": {
"eslint-check": "eslint --print-config . | eslint-config-prettier-check",
"format": "eslint --fix src test",
"prepublishOnly": "yarn build",
"build": "webpack --env dev && webpack --env build && npm run test",
"dev": "webpack --progress --colors --watch --env dev",
"test": "jest --colors --notify --config=jest.config.js",
"test:watch": "test --watch",
"test:coverage": "yarn test --coverage"
},
"repository": {
"type": "git",
"url": "https://github.com/danjfletcher/vue-model-factories.git"
},
"keywords": [
"vue",
"es6",
"laravel",
"factory",
"model"
],
"author": "Dan Fletcher",
"license": "MIT",
"bugs": {
"url": "https://github.com/danjfletcher/vue-model-factories/issues"
},
"homepage": "https://github.com/danjfletcher/vue-model-factories",
"husky": {
"hooks": {
"pre-commit": "yarn format"
}
},
"devDependencies": {
"@sucrase/webpack-object-rest-spread-plugin": "^1.0.0",
"babel-cli": "^6.26.0",
"babel-core": "^6.26.3",
"babel-eslint": "^8.2.3",
"babel-jest": "^23.0.0",
"babel-loader": "^7.1.4",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-preset-env": "^1.7.0",
"chai": "^4.1.2",
"copy-webpack-plugin": "^4.6.0",
"eslint": "^4.19.1",
"eslint-config-prettier": "^3.3.0",
"eslint-loader": "^1.9.0",
"eslint-plugin-prettier": "^3.0.0",
"husky": "^1.2.0",
"jest": "^23.6.0",
"mocha": "^4.0.1",
"prettier": "^1.15.3",
"regenerator-runtime": "^0.11.1",
"webpack": "^4.8.3",
"webpack-cli": "^2.1.4",
"yargs": "^10.0.3"
}
}