-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
36 lines (36 loc) · 1.03 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
{
"name": "mirrarray",
"version": "2.0.0",
"description": "Very simple package for creating a keymirror object from an array of strings",
"main": "dist/mirrarray.js",
"unpkg": "dist/mirrarray.js",
"module": "index.js",
"repository": "git@github.com:johnwquarles/mirrarray.git",
"author": "John Wiley Quarles <john.w.quarles@gmail.com>",
"keywords": [
"keymirror",
"key-mirror"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/johnwquarles/mirrarray/issues"
},
"homepage": "https://github.com/johnwquarles/mirrarray#readme",
"scripts": {
"build": "webpack --config webpack.config.babel.js --progress --hide-modules",
"coverage": "jest --coverage",
"prepublish": "npm run build",
"test": "jest"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-jest": "^21.0.2",
"babel-loader": "^7.1.2",
"babel-preset-env": "^1.6.0",
"babel-register": "^6.26.0",
"coveralls": "^2.13.1",
"jest": "^21.0.2",
"webpack": "^3.5.5",
"webpack-merge": "^4.1.0"
}
}