-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.5 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
53
54
55
56
{
"author": "Kasper Tidemann",
"bugs": {
"url": "https://github.com/tdmnco/request-js/issues"
},
"description": "Request.js is a simple request tool for web applications.",
"devDependencies": {
"@babel/core": "7.10.4",
"@babel/plugin-transform-runtime": "7.10.4",
"@babel/preset-env": "7.10.4",
"@babel/runtime": "7.10.4",
"@rollup/plugin-commonjs": "13.0.0",
"@rollup/plugin-node-resolve": "8.1.0",
"eslint": "7.4.0",
"jest": "26.1.0",
"jest-localstorage-mock": "2.4.2",
"mkdirp": "1.0.4",
"nock": "13.0.2",
"npm": "6.14.5",
"rimraf": "3.0.2",
"rollup": "2.20.0",
"rollup-plugin-babel": "4.4.0",
"rollup-plugin-uglify": "6.0.4"
},
"homepage": "https://github.com/tdmnco/request-js#readme",
"jest": {
"setupFiles": [
"jest-localstorage-mock"
],
"testURL": "http://localhost/"
},
"keywords": [
"javascript",
"json",
"request",
"tdmnco"
],
"license": "MIT",
"main": "dist/js/request.js",
"name": "tdmnco-request",
"scripts": {
"dist": "rollup -c",
"postdist": "npm run test:dist",
"predist": "rimraf dist && mkdirp dist/js",
"pretest": "eslint src/js/**/*.js",
"release": "npm run dist",
"test": "npm run test:dev && npm run test:dist",
"test:dev": "jest --verbose test/js/dev/request.test",
"test:dist": "jest --verbose test/js/dist/request.test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tdmnco/request-js.git"
},
"version": "0.1.0"
}