-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.71 KB
/
Copy pathpackage.json
File metadata and controls
60 lines (60 loc) · 1.71 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
{
"name": "@speedcurve/lux",
"version": "4.5.0",
"config": {
"snippetVersion": "2.0.0"
},
"main": "dist/lux.js",
"types": "dist/types/index.d.ts",
"type": "module",
"scripts": {
"build": "rollup -c",
"build:types": "tsc -p tsconfig.declarations.json",
"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": "npm run test:unit && npm run test:e2e",
"test:unit": "jest",
"test:e2e": "playwright test",
"watch": "npm run build -- --watch",
"prepublishOnly": "npm run build && npm run build:types"
},
"files": [
"dist",
"src"
],
"devDependencies": {
"@babel/core": "^7.21.5",
"@babel/preset-env": "^7.21.5",
"@babel/preset-typescript": "^7.21.5",
"@playwright/test": "1.57.0",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-replace": "^6.0.2",
"@rollup/plugin-terser": "^0.4.0",
"@rollup/plugin-typescript": "^12.1.4",
"@typescript-eslint/eslint-plugin": "8.53.0",
"@typescript-eslint/parser": "8.53.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": "^4.46.2",
"sqlite": "^5.0.1",
"sqlite3": "^5.1.6",
"tslib": "^2.3.1",
"typescript": "5.9.3"
},
"prettier": {
"printWidth": 100
},
"repository": {
"type": "git",
"url": "https://github.com:speedcurve-metrics/lux.js.git"
},
"license": "BSD-3-Clause"
}