forked from thewca/wca-helpers
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.36 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": "Ronald Mansveld",
"email": "ronald.mansveld@gmail.com"
},
"license": "GPL",
"bugs": {
"url": "https://github.com/thewca/wca-helpers/issues"
},
"homepage": "https://github.com/thewca/wca-helpers#readme",
"maintainers": [
{
"name": "Ronald Mansveld",
"email": "ronald.mansveld@gmail.com"
}
],
"devDependencies": {
"@babel/core": "^7.21.0",
"@babel/preset-env": "^7.20.2",
"@babel/preset-typescript": "^7.21.0",
"@types/jasmine": "^4.3.1",
"babel-jest": "^29.4.3",
"coveralls": "^3.1.1",
"jest": "^29.4.3",
"prettier": "^2.8.4",
"ts-node": "^10.9.1",
"typescript": "^4.9.5"
}
}