-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 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
{
"name": "@pankod/typescript-enum-helper",
"version": "1.0.6",
"description": "typescript enum helper example",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "rm -rf dist/** && tsc",
"start": "node dist/index.js",
"dev": "nodemon --exec ts-node src/index.ts --watch src",
"test": "jest --watch",
"prepare": "npm run build",
"prepublishOnly": "npm test",
"preversion": "npm test",
"coverage": "jest --coverage"
},
"files": [
"dist",
"src"
],
"repository": {
"type": "git",
"url": "git+https://github.com/pankod/typescript-enum-helper.git"
},
"author": "Pankod Inc.",
"license": "MIT",
"bugs": {
"url": "https://github.com/pankod/typescript-enum-helper/issues"
},
"homepage": "https://github.com/pankod/typescript-enum-helper#readme",
"keywords": [
"typescript",
"npm",
"npm package",
"generator"
],
"devDependencies": {
"@types/jest": "^24.0.11",
"@types/node": "^11.13.6",
"jest": "^24.7.1",
"nodemon": "^1.18.11",
"rimraf": "^2.6.3",
"ts-jest": "^24.0.2",
"ts-node": "^8.1.0",
"typescript": "^3.4.4"
}
}