-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 871 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
{
"name": "mirror-keys",
"version": "1.0.1",
"description": "Copies object keys over to values, useful to create a constant like enum.",
"main": "dist/src/index.js",
"types": "dist/src/index.d.ts",
"scripts": {
"build": "tsc",
"test": "mocha dist/spec",
"pretest": "npm run build",
"preversion": "npm test",
"prepublish": "npm test"
},
"repository": {
"type": "git",
"url": "https://github.com/brunolm/mirror-keys"
},
"keywords": [
"mirror-keys",
"const-enum"
],
"author": {
"email": "brunolm7@gmail.com",
"name": "Bruno Leonardo Michels",
"url": "http://codingwise.com/"
},
"license": "ISC",
"runkitExampleFilename": "runkit.js",
"devDependencies": {
"@types/chai": "^3.4.35",
"@types/mocha": "^2.2.40",
"chai": "^3.5.0",
"mocha": "^3.2.0",
"typescript": "^2.2.2"
}
}