forked from rauschma/enumify
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 926 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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
{
"name": "enumify-ts",
"version": "2.0.2",
"author": "Matteo Zanella",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/MatteoZanella/ts-enumify"
},
"keywords": [
"typescript",
"enum",
"library",
"javascript",
"generics",
"enumerator",
"node",
"js",
"ts",
"lib",
"type"
],
"main": "lib/index.js",
"types": "lib/index.d.ts",
"files": [
"/lib"
],
"scripts": {
"clean": "rm -rf lib/*",
"build": "tsc",
"watch": "tsc --watch",
"test": "mocha",
"prepublishOnly": "npm run clean && npm run build"
},
"directories": {
"lib": "./lib",
"src": "./src",
"test": "./test"
},
"devDependencies": {
"@types/chai": "^4.2.14",
"@types/mocha": "^5.2.7",
"@types/node": "^13.1.6",
"chai": "^4.2.0",
"mocha": "^8.2.1",
"ts-node": "9.1.0",
"typescript": "^4.1.2"
}
}