-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.29 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
42
43
44
45
46
47
48
49
{
"name": "mkobj",
"version": "0.2.0",
"description": "Make creating of objects with conditional properties easier.",
"main": "lib/mkobj.js",
"author": "Martin Petluš <martinpetlus@gmail.com>",
"directories": {
"lib": "lib"
},
"repository": {
"type": "git",
"url": "https://github.com/martinpetlus/mkobj.git"
},
"homepage": "https://github.com/martinpetlus/mkobj",
"bugs": {
"url": "https://github.com/martinpetlus/mkobj/issues"
},
"scripts": {
"test": "npm run build && mocha --compilers js:babel-core/register",
"pretest": "npm run lint",
"build": "npm run build-dev && npm run build-prod",
"build-dev": "BABEL_ENV=development babel src --out-file lib/mkobj.js",
"build-prod": "BABEL_ENV=production babel src --out-file lib/mkobj.min.js",
"prepublish": "npm test && npm run build",
"lint": "eslint ."
},
"keywords": [
"make",
"create",
"object",
"easy",
"easier",
"optional",
"conditional",
"property",
"properties"
],
"license": "MIT",
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-preset-env": "^1.3.3",
"babili": "^0.0.12",
"chai": "^3.5.0",
"eslint": "^3.19.0",
"eslint-config-airbnb-base": "latest",
"eslint-plugin-import": "^2.2.0",
"mocha": "^3.2.0"
}
}