-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.08 KB
/
package.json
File metadata and controls
40 lines (40 loc) · 1.08 KB
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
{
"name": "@manwaring-games/library-starter",
"version": "0.0.1",
"description": "Template repository for custom libraries",
"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": {
"@babel/core": "^7.9.6",
"@babel/plugin-proposal-class-properties": "^7.8.3",
"@babel/preset-env": "^7.9.6",
"@babel/preset-typescript": "^7.9.0",
"@types/jest": "^25.2.3",
"@types/node": "^14.0.5",
"husky": "^4.2.5",
"publish-please": "^5.5.1",
"rimraf": "^3.0.2",
"ts-jest": "^26.0.0",
"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"
}