-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
44 lines (44 loc) · 1.03 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
{
"name": "vutils",
"version": "0.15.3",
"description": "Utilities For VueJS",
"main": "dist/index.js",
"repository": "smartprix/vutils",
"directories": {
"test": "test"
},
"scripts": {
"test": "npm run lint && npm run test-only",
"check-coverage": "true",
"lint": "eslint src",
"lint:fix": "eslint src --fix",
"test-only": "mocha test/*.test.js",
"build": "rm -rf dist && node build.js",
"-precommit": "npm run build && npm test && npm run check-coverage",
"prepublishOnly": "npm run build"
},
"author": "Hitesh Khandelwal <hitesh@smartprix.com> (http://www.smartprix.com/)",
"license": "ISC",
"peerDependencies": {
"lodash": ">= 4.0.0",
"vue": ">= 2.0.0"
},
"devDependencies": {
"eslint": "4.19.1",
"eslint-config-smartprix": "3.4.2",
"sm-webpack-config": "^0.17.6"
},
"babel": {
"presets": [
"stage-0"
],
"sourceMaps": true
},
"eslintConfig": {
"extends": "smartprix",
"rules": {}
},
"dependencies": {
"jsurl2": "^2.1.0"
}
}