-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 758 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 758 Bytes
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
{
"name": "devtools-devices",
"version": "1.1.0",
"description": "Devices info from devtools-frontend for mocking",
"keywords": [
"devtools",
"devices",
"mocking"
],
"main": "dist/index.cjs",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"files": [
"dist",
"!scripts",
"!tests",
"!pnpm-lock.yaml"
],
"scripts": {
"pregen": "rimraf dist",
"gen": "ts-node scripts/gen.ts",
"gen:dev": "TEMP_SOURCE=1 npm run gen",
"test": "node tests/test.js && ts-node tests/test.ts"
},
"devDependencies": {
"@types/node": "^17.0.18",
"got": "11",
"json-to-ts": "^1.7.0",
"release-it": "^14.12.4",
"rimraf": "^3.0.2",
"ts-node": "^10.5.0",
"typescript": "^4.5.5"
}
}