-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
69 lines (69 loc) · 1.77 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
{
"name": "@fastly/performance-observer-polyfill",
"version": "2.0.0",
"main": "dist/index.js",
"module": "dist/esm/index.js",
"types": "dist/esm/types/index.d.ts",
"files": [
"src",
"dist",
"polyfill"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/fastly/performance-observer-polyfill.git"
},
"publishConfig": {
"access": "public"
},
"keywords": [
"performance",
"performanceobserver",
"polyfill"
],
"scripts": {
"test": "npm run test:once && npm run lint",
"test:once": "jest --coverage",
"test:watch": "jest --watch",
"start": "rollup -c --environment ENV:dev",
"build": "rollup -c --environment ENV:prod",
"build:dev": "npm run start",
"lint": "tsc --noEmit && eslint '*/**/*.ts' --fix",
"release": "npx np",
"prepublishOnly": "npm run build"
},
"devDependencies": {
"@rollup/plugin-html": "^0.2.0",
"@rollup/plugin-node-resolve": "^11.0.0",
"@rollup/plugin-typescript": "^6.1.0",
"@types/jest": "^24.0.22",
"@types/node": "^14.14.10",
"@typescript-eslint/eslint-plugin": "^1.13.0",
"@typescript-eslint/parser": "^1.13.0",
"core-js": "^3.4.0",
"eslint": "^5.16.0",
"eslint-config-prettier": "^4.3.0",
"eslint-loader": "^2.2.1",
"eslint-plugin-prettier": "^3.1.1",
"husky": "^2.7.0",
"jest": "^26.6.3",
"jest-mock-random": "^1.0.2",
"prettier": "^1.17.1",
"rollup": "^2.30.0",
"rollup-plugin-license": "^2.2.0",
"rollup-plugin-serve": "^1.1.0",
"rollup-plugin-sizes": "^1.0.3",
"rollup-plugin-terser": "^7.0.2",
"ts-jest": "^26.4.4",
"typescript": "4.1"
},
"dependencies": {
"tslib": "^2.0.3"
},
"husky": {
"hooks": {
"pre-push": "npm test"
}
}
}