-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 893 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 893 Bytes
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": "js-object-interface",
"version": "0.6.3",
"description": "Wrap JS Objects to create a functional Array-like interface for iteration and whatnot",
"main": "lib/index.js",
"scripts": {
"test": "NODE_ENV=test ./node_modules/.bin/mocha --ui bdd --bail --colors ./tests/**/*.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/iamdevonbutler/js-object-interface.git"
},
"author": "Jay Pescione <jpescione@gmail.com> (https://github.com/iamdevonbutler)",
"license": "MIT",
"bugs": {
"url": "https://github.com/iamdevonbutler/js-object-interface/issues"
},
"homepage": "https://github.com/iamdevonbutler/js-object-interface#readme",
"devDependencies": {
"chai": "4.1.2",
"js-isequal": "0.2.0",
"mocha": "5.0.1"
},
"dependencies": {
"js-object-assign": "0.1.0"
},
"engines": {
"node": ">=9.0.0"
}
}