-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 1.05 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
{
"name": "symbol-keymirror",
"version": "0.1.2",
"description": "Takes an array of string and returns an object with the string as key, and Symbol(key) as the value",
"main": "dist/index.js",
"scripts": {
"test": "npm run build && mocha lib/index.test.js",
"build": "babel lib -d dist --ignore *.test.js ",
"prepublish": "npm run test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jsoulet/symbol-keymirror.git"
},
"keywords": [
"javascript",
"symbol",
"keymirror"
],
"author": "Johan Soulet <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/jsoulet/symbol-keymirror/issues"
},
"homepage": "https://github.com/jsoulet/symbol-keymirror#readme",
"devDependencies": {
"babel-cli": "^6.24.0",
"babel-plugin-transform-object-rest-spread": "^6.23.0",
"babel-preset-es2015": "^6.24.0",
"chai": "^3.5.0",
"mocha": "^3.2.0"
},
"babel": {
"presets": [
"es2015"
],
"plugins": [
"transform-object-rest-spread"
]
}
}