-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
75 lines (75 loc) · 1.91 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
{
"name": "nodups",
"version": "0.2.0",
"description": "No dups, no doubts.",
"main": "dst/nodups.js",
"scripts": {
"test": "npm run lint && npm run cover && npm run karma",
"ci": "npm run cover && npm run karma",
"mocha": "cross-env NODE_ENV=test _mocha --require @babel/register --recursive test",
"karma": "karma start karma.conf.js",
"cover": "nyc npm run mocha",
"lint": "eslint src",
"compile": "babel --out-dir dst src",
"prepare": "npm run compile",
"bench": "node benchmark.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/rmdm/nodups.git"
},
"files": [
"dst/nodups.js",
"polyfill.js"
],
"keywords": [
"nodups",
"uniq",
"unique",
"duplicates",
"array",
"set",
"map",
"dups"
],
"author": "rmdm",
"license": "MIT",
"bugs": {
"url": "https://github.com/rmdm/nodups/issues"
},
"homepage": "https://github.com/rmdm/nodups#readme",
"devDependencies": {
"@babel/cli": "^7.4.4",
"@babel/core": "^7.4.4",
"@babel/plugin-transform-runtime": "^7.4.4",
"@babel/preset-env": "^7.4.4",
"@babel/register": "^7.4.4",
"@babel/runtime-corejs3": "^7.4.4",
"array-uniq": "^2.1.0",
"array-unique": "^0.3.2",
"assert-match": "^1.1.1",
"babel-plugin-add-module-exports": "^1.0.2",
"babel-plugin-istanbul": "^5.1.3",
"babelify": "^10.0.0",
"benchmark": "^2.1.4",
"browserify": "^16.2.3",
"coveralls": "^3.0.3",
"cross-env": "^5.0.5",
"dedupe": "^3.0.1",
"eslint": "^5.16.0",
"karma": "^4.1.0",
"karma-browserify": "^6.0.0",
"karma-mocha": "^1.3.0",
"karma-phantomjs-launcher": "^1.0.4",
"lodash.uniq": "^4.5.0",
"lodash.uniqwith": "^4.5.0",
"mocha": "^6.1.4",
"nyc": "^14.0.0",
"uniq": "^1.0.1",
"uniqs": "^2.0.0"
},
"dependencies": {
"@babel/runtime": "^7.4.4",
"lodash.isequalwith": "^4.4.0"
}
}