generated from manwaring-games/library-starter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
34 lines (34 loc) · 887 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
33
34
{
"name": "@manwaring-games/codenames-common",
"version": "0.0.10",
"description": "Common interfaces for UI and API/services",
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "rimraf dist && tsc -p tsconfig.build.json",
"test": "echo \"Error: no test specified\"",
"test-circle": "circleci config validate",
"publish-please": "publish-please",
"prepublishOnly": "publish-please guard && npm run build"
},
"dependencies": {},
"devDependencies": {
"@types/node": "^14.0.9",
"husky": "^4.2.5",
"publish-please": "^5.5.1",
"rimraf": "^3.0.2",
"typescript": "^3.9.3"
},
"husky": {
"hooks": {
"pre-commit": "npm test && npm run test-circle"
}
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"/dist"
],
"author": "Made with ♥ by Andrew and Phillip Manwaring"
}