-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.29 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.29 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
{
"name": "webinger",
"version": "1.1.4",
"description": "test load util for web apps",
"main": "dist/index.js",
"files": [
"dist"
],
"preferGlobal": true,
"bin": {
"webinger": "./dist/index.js"
},
"scripts": {
"rimraf": "rimraf",
"clean:dist": "npm run rimraf -- dist",
"build": "npm run clean:dist && webpack --config webpack.config.js",
"start": "ts-node ./src/index.ts"
},
"author": "Artem Anreed",
"homepage": "https://github.com/grachpower/webinger#readme",
"url": "https://github.com/grachpower/webinger/issues",
"email": "amiscary@gmail.com",
"repository": {
"type": "git",
"url": "https://github.com/grachpower/webinger.git"
},
"license": "MIT",
"dependencies": {
"axios": "^0.18.0",
"cli-spinner": "^0.2.8",
"core-js": "^2.5.7",
"lodash": "^4.17.10",
"rxjs": "^6.2.2",
"yargs": "^12.0.1"
},
"devDependencies": {
"@types/es6-promise": "^3.3.0",
"uglifyjs-webpack-plugin": "^1.3.0",
"@types/axios": "^0.14.0",
"@types/lodash": "^4.14.116",
"@types/node": "^10.7.1",
"@types/rimraf": "^2.0.2",
"cli-spinner": "^0.2.8",
"rimraf": "^2.6.2",
"ts-loader": "^4.5.0",
"ts-node": "^7.0.1",
"typescript": "^3.0.1",
"webpack": "^4.17.0",
"webpack-cli": "^3.1.0"
}
}