-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.6 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
50
51
52
{
"name": "defaulty",
"version": "2.1.0",
"description": "Copies missing properties to the target object.",
"main": "dist/defaulty.js",
"scripts": {
"version:major": "webpack --env.major && version-to-tag.sh && npm publish",
"version:minor": "webpack --env.minor && version-to-tag.sh && npm publish",
"version:patch": "webpack --env.patch && version-to-tag.sh && npm publish",
"build": "webpack --progress",
"test": "istanbul cover ./node_modules/mocha/bin/_mocha --report lcovonly -- -R spec && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js && rm -rf ./coverage",
"mocha.test": "mocha"
},
"keywords": [
"copy",
"clone",
"object",
"deep",
"defaults",
"config",
"extend",
"set",
"array",
"values",
"missing",
"properties"
],
"author": "Fabio Ricali",
"license": "MIT",
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-loader": "^7.1.2",
"babel-preset-env": "^1.6.1",
"babel-preset-es2015": "^6.24.1",
"bejs": "^1.11.0",
"coveralls": "^2.13.1",
"istanbul": "^0.4.5",
"mocha": "^3.5.0",
"mocha-lcov-reporter": "^1.3.0",
"unminified-webpack-plugin": "^1.4.2",
"webpack": "^3.10.0",
"webpack-auto-inject-version": "^1.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/fabioricali/defaulty"
},
"dependencies": {
"deep-copy": "^1.4.1"
}
}