-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.37 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
{
"name": "@highpoint/js-fetch",
"version": "4.2.0",
"description": "HighPoint Fetch Library",
"main": "dist/js-fetch.js",
"repository": {
"type": "git",
"url": "git+https://github.com:highpoint-tech/js-fetch.git"
},
"author": "HighPoint <support@mhighpoint.com>",
"license": "MIT",
"private": false,
"dependencies": {
"@babel/runtime": "^7.8.3"
},
"devDependencies": {
"@babel/cli": "^7.0.0",
"@babel/core": "^7.0.0",
"@babel/plugin-transform-runtime": "^7.8.3",
"@babel/preset-env": "^7.10.4",
"@highpoint/eslint-config": "^0.1.1",
"babel-eslint": "^10.0.1",
"chai": "^4.1.2",
"eslint": "^5.2.0",
"eslint-config-prettier": "^3.3.0",
"husky": "^1.1.4",
"karma": "^3.0.0",
"karma-chai": "^0.1.0",
"karma-chrome-launcher": "^2.2.0",
"karma-mocha": "^1.3.0",
"lint-staged": "^8.0.4",
"mkdirp": "^0.5.1",
"mocha": "^5.2.0",
"npm-run-all": "^4.1.3",
"prettier": "^1.13.7",
"query-string": "^6.1.0",
"rimraf": "^2.6.2"
},
"scripts": {
"build": "babel src/index.js --out-file dist/js-fetch.js",
"clean": "mkdirp dist && rimraf dist/*",
"lint": "eslint .",
"prebuild": "mkdirp dist",
"prepack": "run-s clean build",
"test": "karma start karma.conf.js --single-run"
},
"husky": {
"hooks": {
"pre-commit": "yarn test && lint-staged"
}
}
}