-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
43 lines (43 loc) · 1 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
{
"name": "supermixer",
"version": "1.0.5",
"description": "Mix JS objects deep, shallow, traversing prototypes, selectively, etc.",
"main": "dist/index.js",
"files": [
"dist/"
],
"scripts": {
"build": "npm run clean && babel src --out-dir dist",
"clean": "rimraf dist",
"lint": "eslint src test",
"prepublish": "npm run test && npm run build",
"test": "npm run lint && babel-node test/"
},
"repository": {
"type": "git",
"url": "git+https://github.com/stampit-org/supermixer.git"
},
"keywords": [
"merge",
"extend",
"assign",
"deep"
],
"author": "koresar",
"license": "MIT",
"bugs": {
"url": "https://github.com/stampit-org/supermixer/issues"
},
"homepage": "https://github.com/stampit-org/supermixer#readme",
"dependencies": {
"lodash": "^4.17.20"
},
"devDependencies": {
"babel": "^5.4.7",
"babel-eslint": "^4.1.7",
"eslint": "^0.21.2",
"require-all": "^1.1.0",
"rimraf": "^2.3.4",
"tape": "^4.0.0"
}
}