-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.15 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
{
"name": "wow-mum-look-no-hands",
"version": "1.0.0",
"description": "Impress your boss and mum with start-up logs like a real grown-up API",
"main": "./lib/index.js",
"types": "./lib/index.d.ts",
"files": [
"lib/**/*"
],
"scripts": {
"build": "rimraf ./lib && tsc",
"test": "jest",
"test:watch": "jest --watch",
"prepare": "npm run build -- -p tsconfig-release.json",
"prepublishOnly": "npm test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/hmmmsausages/wow-mum-look-no-hands.git"
},
"keywords": [
"impressive",
"start-up",
"logs",
"fun",
"joke"
],
"author": "hmmmsausages",
"license": "MIT",
"bugs": {
"url": "https://github.com/hmmmsausages/wow-mum-look-no-hands/issues"
},
"homepage": "https://github.com/hmmmsausages/wow-mum-look-no-hands#readme",
"devDependencies": {
"@types/jest": "^26.0.20",
"jest": "^26.6.3",
"rimraf": "^3.0.2",
"ts-jest": "^26.5.3",
"ts-node": "^9.1.1",
"ts-standard": "^10.0.0",
"typescript": "^4.2.3"
},
"ts-standard": {
"ignore": [
"lib"
],
"env": [
"jest"
]
}
}