-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
56 lines (56 loc) · 1.35 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
{
"name": "@wca/helpers",
"version": "1.1.4",
"description": "Helpers and class definitions for WCA and WCIF",
"keywords": [
"wca",
"World Cube Association",
"WCIF"
],
"main": "lib/index.js",
"types": "lib/index.d.ts",
"files": [
"lib"
],
"scripts": {
"test": "jest",
"test:coverage": "jest --coverage",
"format": "prettier --write \"**/*.{ts,js}\"",
"format:check": "prettier --check \"**/*.{ts,js}\"",
"build": "tsc",
"preversion": "npm test",
"postversion": "git push && git push --tags",
"prepublishOnly": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/thewca/wca-helpers.git"
},
"author": {
"name": "WST",
"email": "software@worldcubeassociation.org"
},
"license": "GPL",
"bugs": {
"url": "https://github.com/thewca/wca-helpers/issues"
},
"homepage": "https://github.com/thewca/wca-helpers#readme",
"maintainers": [
{
"name": "WCA Software Team",
"email": "software@worldcubeassociation.org"
}
],
"devDependencies": {
"@babel/core": "7.23.9",
"@babel/preset-env": "7.23.9",
"@babel/preset-typescript": "7.23.3",
"@types/jasmine": "5.1.4",
"babel-jest": "29.7.0",
"coveralls": "3.1.1",
"jest": "29.7.0",
"prettier": "3.2.5",
"ts-node": "10.9.2",
"typescript": "5.3.3"
}
}