This repository has been archived by the owner on Nov 22, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
50 lines (50 loc) · 1.49 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
{
"name": "tracelib",
"version": "1.0.1",
"description": "A Node.js library that provides Chrome DevTools trace models to parse arbitrary trace logs.",
"main": "./build/src/index.js",
"scripts": {
"build": "run-s clean compile",
"clean": "rm -rf build coverage",
"compile": "NODE_ENV=production tsc",
"prepublishOnly": "npm prune && run-s build",
"release": "npm run release:patch",
"release:patch": "np patch",
"release:minor": "np minor",
"release:major": "np major",
"test": "run-s test:*",
"test:lint": "run-p test:lint:*",
"test:lint:eslint": "eslint --ext ts src devtools tests",
"test:lint:tsc": "tsc",
"test:unit": "jest --coverage",
"watch": "tsc --watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/saucelabs/tracelib.git"
},
"keywords": [
"chrome",
"devtools"
],
"author": "Christian Bromann <[email protected]>",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/saucelabs/tracelib/issues"
},
"homepage": "https://github.com/saucelabs/tracelib#readme",
"devDependencies": {
"@types/jest": "^24.0.16",
"@typescript-eslint/eslint-plugin": "^1.13.0",
"@typescript-eslint/parser": "^1.13.0",
"eslint": "^6.1.0",
"eslint-config-prettier": "^6.0.0",
"eslint-plugin-prettier": "^3.1.0",
"jest": "^24.8.0",
"np": "^5.0.3",
"npm-run-all": "^4.1.5",
"prettier": "^1.18.2",
"ts-jest": "^24.0.2",
"typescript": "^3.5.3"
}
}