forked from slavik57/enum-values
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
34 lines (34 loc) · 965 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": "enum-values",
"version": "1.1.1",
"description": "Library for getting the names and values of typescript enum",
"typings": "index.d.ts",
"main": "index.js",
"scripts": {
"prepublish": "npm run build",
"build": "./node_modules/.bin/tsc",
"buildWatch": "./node_modules/.bin/tsc -w",
"test": "./node_modules/.bin/mocha -c -b src/**/*.test.js",
"testWatch": "./node_modules/.bin/mocha -c -b -w src/**/*.test.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/slavik57/enum-values.git"
},
"keywords": [
"enum"
],
"author": "Slava Shpitalny <slavik57@gmail.com>",
"license": "ISC",
"bugs": {
"url": "https://github.com/slavik57/enum-values/issues"
},
"homepage": "https://github.com/slavik57/enum-values#readme",
"devDependencies": {
"@types/chai": "^4.0.1",
"@types/mocha": "^2.2.41",
"chai": "^3.5.0",
"mocha": "^2.5.3",
"typescript": "^2.4.2"
}
}