-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
44 lines (44 loc) · 1.18 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": "vue-countup-directive",
"version": "1.2.3",
"description": "Vue Directive that creates a countup animation",
"main": "dist/index.js",
"scripts": {
"build": "NODE_ENV=production ./node_modules/.bin/parcel build src/index.js",
"lint": "./node_modules/.bin/eslint src/ --fix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mathvaleriano/vue-countup-directive.git"
},
"keywords": [
"vue",
"vue-directive",
"countUp",
"countUp.js",
"countUp-directive",
"vue-countup-directive"
],
"author": "https://github.com/mathvaleriano",
"license": "MIT",
"bugs": {
"url": "https://github.com/mathvaleriano/vue-countup-directive/issues"
},
"homepage": "https://github.com/mathvaleriano/vue-countup-directive#readme",
"dependencies": {
"countup.js": "^1.9.3"
},
"devDependencies": {
"eslint": "^5.13.0",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-import": "^2.16.0",
"eslint-plugin-node": "^8.0.1",
"eslint-plugin-promise": "^4.0.1",
"eslint-plugin-standard": "^4.0.0",
"husky": "^1.3.1",
"parcel-bundler": "^1.11.0"
},
"husky": {
"pre-commit": "npm run lint"
}
}