-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.74 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.74 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
52
53
54
55
56
57
58
59
60
61
62
{
"name": "openrum",
"version": "1.0.0",
"description": "Real User Monitoring",
"main": "./dist/openrum.js",
"types": "./dist/openrum.d.ts",
"files": [
"/dist"
],
"scripts": {
"compile": "tsc",
"start": "npm run build:dev",
"test": "jest --verbose --coverage",
"test:local": "jest --coverage",
"build:dev": " gulp build:dev && npm run compile && webpack-dev-server --config webpack.dev.config.js --host 0.0.0.0",
"build:prod": "gulp build:prod && npm run compile && webpack --config webpack.prod.config.js"
},
"repository": {
"type": "git",
"url": "https://github.com/openrum/openrumjs"
},
"author": "Piio, Inc.",
"license": "See license in LICENSE",
"homepage": "TODO",
"devDependencies": {
"@babel/core": "^7.13.16",
"@babel/preset-env": "^7.13.15",
"@babel/preset-typescript": "^7.13.0",
"@types/chai": "^4.2.17",
"@types/jest": "^26.0.23",
"@types/jsdom": "^16.2.10",
"babel-jest": "^24.8.0",
"babel-loader": "^8.0.6",
"babel-plugin-rewire": "^1.2.0",
"chai": "^4.3.4",
"del": "^3.0.0",
"ejs": "^2.5.6",
"eslint": "^7.24.0",
"eslint-config-airbnb": "^18.2.1",
"express": "^4.16.4",
"gulp": "^4.0.1",
"gulp-rename": "^1.4.0",
"gulp-replace": "^1.0.0",
"gulp-typescript": "^6.0.0-alpha.1",
"gulp-uglify": "^3.0.2",
"jest": "^26.6.3",
"jest-cli": "^24.8.0",
"ts-jest": "^26.5.5",
"ts-loader": "^9.1.0",
"ts-loader-utils": "^1.1.2",
"typescript": "^4.2.4",
"webpack-cli": "^3.2.1",
"webpack-dev-server": "^3.1.14",
"webpack-stream": "^5.2.1"
},
"dependencies": {
"dotenv-webpack": "^7.0.2",
"fork-ts-checker-webpack-plugin": "^6.2.4",
"fs": "0.0.1-security",
"npm": "^6.14.13"
}
}