forked from universal-model/universal-model-vue
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
68 lines (68 loc) · 1.9 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
{
"name": "universal-model-vue",
"version": "0.11.5",
"description": "Universal model for Vue",
"main": "lib/index.js",
"types": "lib/types/index.d.ts",
"files": [
"lib"
],
"scripts": {
"clean": "rimraf ./lib",
"check-types": "tsc --outDir ./lib/types",
"build": "babel ./src --out-dir lib --source-maps --extensions \".ts\", --ignore \"src/tests\",\"src/setupTests.js\"",
"lint": "eslint ./src --ext .ts",
"prebuild": "npm run clean && npm run prettier && npm run lint && npm run check-types && npm run test-coverage",
"prepublishOnly": "npm run build",
"prettier": "prettier --check \"src/**/*.ts\"",
"test-coverage": "jest ./src --coverage"
},
"repository": {
"type": "git",
"url": "https://github.com/universal-model/universal-model-vue.git"
},
"keywords": [
"Univeral Model",
"Vue"
],
"author": "Petri Silen",
"license": "MIT",
"bugs": {
"url": "https://github.com/universal-model/universal-model-vue/issues"
},
"homepage": "https://github.com/universal-model/universal-model-vue#readme",
"dependencies": {
"lodash": "^4.17.15"
},
"devDependencies": {
"@babel/cli": "^7.8.0",
"@babel/core": "^7.8.0",
"@babel/plugin-proposal-class-properties": "^7.8.0",
"@babel/preset-env": "^7.8.2",
"@babel/preset-typescript": "^7.8.0",
"@types/estree": "0.0.42",
"@types/jest": "^25.1.2",
"@types/lodash": "^4.14.149",
"@types/node": "^13.7.1",
"@typescript-eslint/eslint-plugin": "^2.15.0",
"@typescript-eslint/parser": "^2.15.0",
"eslint": "^6.8.0",
"jest": "^25.1.0",
"prettier": "^1.19.1",
"rimraf": "^3.0.0",
"typescript": "^3.7.4",
"vue": "^3.0.0-alpha.4"
},
"browserslist": [
"last 2 version",
"> 0.2%",
"Firefox ESR",
"not dead"
],
"prettier": {
"arrowParens": "always",
"printWidth": 110,
"tabWidth": 2,
"singleQuote": true
}
}