-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
71 lines (71 loc) · 1.97 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
{
"name": "@sp1ker/bem-vue",
"version": "1.0.0",
"description": "Package helps organize and manage components with BEM modifiers in Vue.",
"main": "lib/vue-bem.js",
"umd:main": "lib/vue-bem.umd.js",
"module": "lib/vue-bem.module.js",
"types": "lib/vue-bem.d.ts",
"files": [
"lib/"
],
"publishConfig": {
"registry": "https://npm.pkg.github.com/"
},
"scripts": {
"test": "jest --config jestconfig.json",
"start": "cross-env TARGET=es rollup -c -w",
"build": "rollup -c",
"format": "prettier --write \"__tests__/**/*.ts\" \"src/**/*.ts\" \"src/**/*.js\"",
"lint": "tslint -p tsconfig.json",
"prepublishOnly": "npm test && npm run lint",
"prepare": "npm run build",
"preversion": "npm run lint",
"pub": "npm publish"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sp1ker/bem-vue.git"
},
"keywords": [
"bem",
"vue",
"vuejs"
],
"author": "Gavrilov Evgeniy",
"license": "MIT",
"bugs": {
"url": "https://github.com/sp1ker/bem-vue/issues"
},
"homepage": "https://github.com/sp1ker/bem-vue#readme",
"dependencies": {
"@bem-react/classname": "1.5.4"
},
"peerDependencies": {
"vue": "^2.6.10"
},
"devDependencies": {
"@babel/plugin-proposal-export-default-from": "^7.5.2",
"@babel/preset-env": "^7.6.2",
"@types/jasmine": "^3.4.0",
"@vue/test-utils": "^1.0.0-beta.29",
"babel-jest": "^24.9.0",
"babel-preset-env": "^1.7.0",
"jest": "^24.9.0",
"prettier": "^1.18.2",
"regenerator-runtime": "^0.13.3",
"rollup": "^1.21.4",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-replace": "^2.2.0",
"rollup-plugin-terser": "^5.1.2",
"rollup-plugin-typescript2": "^0.24.2",
"ts-jest": "^24.1.0",
"tslib": "^1.10.0",
"tslint": "^5.20.0",
"tslint-config-prettier": "^1.18.0",
"typescript": "^3.6.3",
"vue": "^2.6.10",
"vue-template-compiler": "^2.6.10"
}
}