-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.37 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.37 KB
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
{
"name": "api-request-builder",
"version": "1.0.0",
"description": "A playground for XMLHttpRequests",
"scripts": {
"lint": "eslint --ext .js,.vue src",
"fix:lint": "eslint --ext .js,.vue src --fix",
"test": "npm run lint -s",
"start": "parcel src/index.html",
"build": "parcel build --public-url . src/index.html",
"clean": "rm -rf .cache dist",
"predeploy": "npm run clean -s && npm run build -s",
"deploy": "gh-pages -d dist"
},
"repository": {
"type": "git",
"url": "git+https://github.com/terabaud/api-request-builder.git"
},
"keywords": [
"api",
"tool"
],
"author": "Lea Rosema",
"license": "MIT",
"bugs": {
"url": "https://github.com/terabaud/api-request-builder/issues"
},
"homepage": "https://github.com/terabaud/api-request-builder#readme",
"dependencies": {
"vue": "^2.6.11",
"vue-hot-reload-api": "^2.3.4"
},
"devDependencies": {
"@vue/component-compiler-utils": "^3.2.0",
"autoprefixer": "^9.8.5",
"babel-core": "^6.26.3",
"babel-preset-env": "^1.7.0",
"eslint": "^6.8.0",
"eslint-plugin-vue": "^6.2.2",
"gh-pages": "^3.1.0",
"husky": "^4.2.5",
"parcel-bundler": "^1.12.4",
"prettier": "^2.0.5",
"pretty-quick": "^2.0.1",
"vue-template-compiler": "^2.6.11"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
}
}