forked from LACNIC/static
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
56 lines (56 loc) · 1.71 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
{
"name": "webmeasurements",
"version": "0.0.2",
"description": "Browser-based Internet measurements",
"main": "src/index.js",
"directories": {
"test": "tests"
},
"scripts": {
"start": "./node_modules/.bin/webpack-dev-server --config ./webpack.config.dev.js",
"prod": "./node_modules/.bin/webpack --config ./webpack.config.prod.js",
"test": "true"
},
"repository": {
"type": "git",
"url": "git+https://github.com/aguformoso/webmeasurements.git"
},
"author": "Agustin Formoso",
"license": "ISC",
"bugs": {
"url": "https://github.com/aguformoso/webmeasurements/issues"
},
"homepage": "https://github.com/aguformoso/webmeasurements#readme",
"devDependencies": {
"@babel/core": "~7.x",
"@babel/plugin-proposal-class-properties": "~7.x",
"@babel/plugin-proposal-decorators": "~7.x",
"@babel/plugin-proposal-export-namespace-from": "~7.x",
"@babel/plugin-proposal-function-sent": "~7.x",
"@babel/plugin-proposal-object-rest-spread": "~7.x",
"@babel/plugin-transform-async-to-generator": "~7.x",
"@babel/plugin-transform-runtime": "~7.x",
"@babel/preset-env": "~7.x",
"@babel/runtime": "~7.x",
"babel-loader": "~8.x",
"copy-webpack-plugin": "~9.x",
"core-js": "~3.x",
"jasmine-core": "~3.x",
"karma": "~6.x",
"karma-browserstack-launcher": "~1.x",
"karma-chrome-launcher": "~3.x",
"karma-jasmine": "~2.x",
"karma-requirejs": "^1.1.0",
"promise.allsettled": "~1.x",
"regenerator-runtime": "~0.x",
"requirejs": "~2.x",
"uuid": "~3.x",
"webpack": "~5.x",
"webpack-cli": "~3.x",
"webpack-dev-server": "~3.x"
},
"dependencies": {
"rpki-web-test": "~0.x",
"ua-parser-js": "~0.x"
}
}