-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
51 lines (51 loc) · 1.39 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
{
"name": "wrap-request",
"version": "7.2.2",
"description": "a request wrapper for asynchronous operations",
"main": "dist/index.js",
"scripts": {
"prestart": "npm test",
"start": "tsc -p . && npm run minify",
"minify": "uglifyjs --compress --mangle --output dist/index.js --source-map -- dist/index.js",
"test": "jest",
"release": "standard-version && git push",
"prepublish": "npm start"
},
"repository": {
"type": "git",
"url": "git+https://github.com/misantronic/wrap-request.git"
},
"keywords": [
"xhr"
],
"author": "David Schkalee <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/misantronic/wrap-request/issues"
},
"homepage": "https://github.com/misantronic/wrap-request#readme",
"dependencies": {},
"devDependencies": {
"@types/jest": "26.0.22",
"jest": "26.6.3",
"standard-version": "^9.1.1",
"ts-jest": "26.5.4",
"typescript": "4.2.3",
"uglify-js": "^3.17.4"
},
"jest": {
"testPathIgnorePatterns": [
"/dist/"
],
"watchPathIgnorePatterns": [
"/dist/"
],
"moduleFileExtensions": [
"js",
"ts"
],
"transform": {
"\\.(ts|tsx)$": "ts-jest"
}
}
}