-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.36 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.36 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
{
"name": "currietechnologies-razorpagevisibility",
"version": "1.0.0",
"description": "A Razor class library for interacting with the browser visibility API",
"scripts": {
"build": "SET NODE_ENV=production && webpack -p --color",
"build:tsc": "tsc",
"watch": "webpack --watch",
"lint": "eslint ./src --ext .ts",
"prettier:write": "prettier --write ./src/*.ts",
"prettier:check": "prettier --check ./src/*.ts",
"babel": "babel ./src/pagevisibility.ts --out-dir wwwroot --extensions .ts,.tsx"
},
"devDependencies": {
"@babel/cli": "^7.10.1",
"@babel/core": "^7.10.2",
"@babel/preset-env": "^7.10.2",
"@babel/preset-typescript": "^7.10.1",
"@types/node": "^14.0.12",
"@typescript-eslint/eslint-plugin": "^2.34.0",
"@typescript-eslint/parser": "^2.34.0",
"babel-loader": "^8.1.0",
"clean-webpack-plugin": "^3.0.0",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.11.0",
"prettier": "^1.19.1",
"terser-webpack-plugin": "^3.0.3",
"tslint": "^6.1.2",
"typescript": "^3.9.5",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.11"
},
"browserslist": [
"ie 10",
"edge 12",
"chrome 33",
"firefox 18",
"safari 6.1",
"ios_saf 7",
"opera 12.1",
"and_chr 76",
"and_ff 68",
"and_uc 12.12",
"samsung 5",
"and_qq 1.2"
],
"author": "Michael J. Currie"
}