-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.57 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
{
"name": "@speedcurve/lux",
"version": "4.0.29",
"main": "dist/lux.js",
"scripts": {
"build": "npm run rollup",
"rollup": "rollup --config rollup.config.mjs",
"type-check": "tsc --noEmit",
"lint": "eslint 'src/**/*.ts' 'tests/**/*.ts' 'docs/debug-parser/**/*.ts'",
"lint:fix": "npm run lint -- --fix",
"test": "npm run type-check && npm run lint && npm run test:all",
"test:all": "jest && playwright test",
"test:unit": "jest tests/unit/",
"test:e2e": "playwright test tests/integration/",
"watch": "npm run rollup -- --watch",
"prepublishOnly": "npm run build"
},
"files": [
"dist",
"src"
],
"devDependencies": {
"@babel/core": "^7.21.5",
"@babel/preset-env": "^7.21.5",
"@babel/preset-typescript": "^7.21.5",
"@playwright/test": "^1.32.3",
"@rollup/plugin-replace": "^5.0.1",
"@rollup/plugin-terser": "^0.4.0",
"@rollup/plugin-typescript": "^11.0.0",
"@typescript-eslint/eslint-plugin": "^6.2.0",
"@typescript-eslint/parser": "^6.2.0",
"babel-jest": "^29.5.0",
"eslint": "^8.3.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-prettier": "^5.0.0",
"jest": "^29.5.0",
"jest-environment-jsdom": "^29.5.0",
"prettier": "^3.0.0",
"rollup": "^3.3.0",
"sqlite": "^5.0.1",
"sqlite3": "^5.1.6",
"tslib": "^2.3.1",
"typescript": "^5.0.4"
},
"prettier": {
"printWidth": 100
},
"repository": {
"type": "git",
"url": "https://github.com:speedcurve-metrics/lux.js.git"
},
"license": "BSD-3-Clause"
}