-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
30 lines (30 loc) · 939 Bytes
/
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
{
"name": "removeduplicates",
"version": "1.1.0",
"description": "Function that removes duplicate objects based on a key from an array of objects.",
"main": "lib/index.js",
"scripts": {
"build": "babel --presets es2015,stage-0 -d lib/ src/",
"prepublish": "npm run build",
"test": "mocha --compilers js:babel-register",
"test:watch": "mocha --compilers js:babel-register --watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tjcafferkey/removeduplicates.git"
},
"author": "Tom Cafferkey",
"license": "ISC",
"bugs": {
"url": "https://github.com/tjcafferkey/removeduplicates/issues"
},
"homepage": "https://github.com/tjcafferkey/removeduplicates#readme",
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"babel-register": "^6.24.1",
"chai": "^4.0.2",
"mocha": "^3.4.2"
}
}