-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
90 lines (90 loc) · 3.03 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
{
"name": "@michaelcoxon/rest-client",
"version": "1.6.0",
"description": "A simple REST client.",
"main": "dist/index.js",
"module": "lib/index.js",
"types": "dist/index.d.ts",
"sideEffects": false,
"scripts": {
"build-typescript": "tsc -p src\\config\\es5\\tsconfig.json&& tsc -p src\\config\\es6\\tsconfig.json&& tsc -p src\\config\\esnext\\tsconfig.json",
"version": "npm -v && node -v",
"test": "nyc --reporter=html --reporter=text mocha --opts ./tests/mocha.opts",
"watch-tests": "mocha -r ts-node/register tests/**/*.unit.spec.ts --watch -R min",
"build-dev": "SET NODE_ENV=development&& webpack",
"build-prod": "SET NODE_ENV=production&& webpack",
"build-tests": "webpack --config ./webpack.config.tests.js --display-error-details",
"build-doc": "typedoc --tsconfig \"src\\config\\esnext\\tsconfig.json\" --logger console --out docs src&& copy .nojekyll docs\\.nojekyll",
"prepack": "npm-run-all -s build-typescript build-prod test build-doc",
"run-integration-tests": "webpack-dev-server --config ./webpack.config.tests.js --hot"
},
"repository": {
"type": "git",
"url": "git+https://github.com/michaelcoxon/rest-client.git"
},
"keywords": [
"rest-client",
"typescript"
],
"author": "Michael Coxon",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/michaelcoxon/rest-client/issues"
},
"homepage": "https://github.com/michaelcoxon/rest-client#readme",
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.8.4",
"@babel/plugin-proposal-class-properties": "^7.8.3",
"@babel/plugin-proposal-object-rest-spread": "^7.8.3",
"@babel/plugin-transform-runtime": "^7.8.3",
"@babel/preset-env": "^7.8.4",
"@istanbuljs/nyc-config-typescript": "^0.1.3",
"@types/chai": "^4.2.9",
"@types/core-js": "^2.5.2",
"@types/mocha": "5.0.0",
"@types/prop-types": "^15.7.3",
"@types/sinon": "^7.5.1",
"@types/sinon-chai": "^3.2.3",
"@types/webpack-env": "^1.15.1",
"awesome-typescript-loader": "^5.2.1",
"babel-loader": "8.0.6",
"chai": "^4.2.0",
"core-js": "^3.6.4",
"dts-bundle": "^0.7.3",
"file-loader": "^4.3.0",
"jsdoc-babel": "^0.5.0",
"jsdoc-to-markdown": "^5.0.3",
"json-loader": "^0.5.7",
"mocha": "^5.2.0",
"npm-run-all": "^4.1.5",
"nyc": "^14.1.1",
"sinon": "^7.5.0",
"sinon-chai": "^3.4.0",
"source-map-support": "^0.5.16",
"string-replace-loader": "^2.2.0",
"ts-mocha": "^6.0.0",
"ts-nameof": "^3.2.0",
"ts-node": "^8.6.2",
"typedoc": "^0.15.8",
"typescript": "^3.8.3",
"uglifyjs-webpack-plugin": "^2.2.0",
"webpack": "^4.41.6",
"webpack-cli": "^3.3.11",
"webpack-cyclic-dependency-checker": "^0.0.1",
"webpack-log": "^3.0.1",
"html-webpack-plugin": "^3.2.0",
"webpack-dev-server": "^3.2.1",
"xmlhttprequest": "1.8.0"
},
"dependencies": {
"@babel/runtime": "^7.8.4",
"@michaelcoxon/utilities": "^1.8.2",
"tslib": "^1.10.0"
},
"-vs-binding": {
"ProjectOpened": [
"test"
]
}
}