-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
32 lines (32 loc) · 845 Bytes
/
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
{
"name": "lor-deckcodes-ts",
"version": "1.1.0",
"description": "Implementation of the Legends of Runeterra deck code library in Typescript with 0 runtime dependencies.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist/**/*"
],
"directories": {
"test": "test"
},
"scripts": {
"test": "jest",
"build": "rm -rf dist && tsc",
"format": "prettier --write \"src/**/*.ts\"",
"prepare": "npm run build",
"prepublishOnly": "npm test",
"version": "npm run format && npm run test && git add -A",
"postversion": "git push && git push --tags"
},
"author": "",
"license": "MIT",
"devDependencies": {
"@types/expect": "^24.3.0",
"@types/jest": "^26.0.22",
"jest": "^26.6.3",
"prettier": "^2.2.1",
"ts-jest": "^26.5.4",
"typescript": "^4.2.4"
}
}