-
Notifications
You must be signed in to change notification settings - Fork 32
/
Copy pathpackage.json
34 lines (34 loc) · 1.12 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
{
"name": "vue-intersect",
"version": "1.1.5",
"description": "A Vue component to add intersection-observer to a Vue component or HTML element.",
"main": "dist/index.js",
"repository": "[email protected]:heavyy/vue-intersect.git",
"author": "Heavyy <[email protected]>",
"license": "MIT",
"scripts": {
"test": "./node_modules/.bin/jest --coverage --coverageDirectory coverage",
"lint": "./node_modules/.bin/eslint -c ./.eslintrc.js src/**/*.js",
"lint:fix": "./node_modules/.bin/eslint -c ./.eslintrc.js src/**/*.js --fix",
"build": "./node_modules/.bin/babel ./src -d ./dist/"
},
"peerDependencies": {
"vue": "^2.4.2"
},
"devDependencies": {
"vue": "^2.4.2",
"babel-cli": "^6.24.1",
"babel-core": "^6.25.0",
"babel-eslint": "^7.2.3",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.6.0",
"coveralls": "^2.13.1",
"eslint": "^4.4.1",
"eslint-config-standard": "^10.2.1",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-node": "^5.1.1",
"eslint-plugin-promise": "^3.5.0",
"eslint-plugin-standard": "^3.0.1",
"jest": "^20.0.4"
}
}