-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·74 lines (74 loc) · 1.81 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
69
70
71
72
73
74
{
"name": "vue-pluralize",
"version": "0.0.2",
"description": "Handy Pluralize filters for your Vue project",
"main": "dist/vue-pluralize.js",
"scripts": {
"test": "jest",
"eslint": "eslint *.js",
"build": "yarn bili --input vue-pluralize.js --plugins babel --format umd,es,cjs,umd-min"
},
"repository": {
"type": "git",
"url": "git+https://github.com/SimpleNexus/vue-pluralize.git"
},
"keywords": [
"vue",
"custom",
"plural",
"pluralize",
"filter",
"singularize"
],
"author": "catskull",
"license": "MIT",
"bugs": {
"url": "https://github.com/SimpleNexus/vue-pluralize/issues"
},
"homepage": "https://github.com/SimpleNexus/vue-pluralize#readme",
"dependencies": {
"pluralize": "^7.0.0"
},
"peerDependencies": {
"vue": ">=2.x.x"
},
"devDependencies": {
"babel-core": "^6.26.0",
"babel-eslint": "^8.0.3",
"babel-jest": "^21.2.0",
"babel-loader": "^7.1.2",
"babel-preset-env": "^1.6.1",
"bili": "^2.1.2",
"eslint": "^4.12.1",
"eslint-config-airbnb": "^16.1.0",
"eslint-loader": "^1.9.0",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-jsx-a11y": "^6.0.2",
"eslint-plugin-react": "^7.5.1",
"jest": "^21.2.1",
"jest-cli": "^21.2.1",
"jest-serializer-vue": "^0.2.0",
"jest-vue": "^0.8.1",
"pre-commit": "^1.2.2",
"rollup-plugin-babel": "^3.0.4",
"vue": "^2.5.2"
},
"pre-commit": "eslint",
"jest": {
"moduleFileExtensions": [
"js",
"vue"
],
"moduleNameMapper": {
"^@/(.*)$": "<rootDir>/$1"
},
"transform": {
"^.+\\.js$": "<rootDir>/node_modules/babel-jest",
".*\\.(vue)$": "<rootDir>/node_modules/jest-vue"
},
"snapshotSerializers": [
"<rootDir>/node_modules/jest-serializer-vue"
],
"mapCoverage": true
}
}