-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
36 lines (36 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
{
"name": "overload-bracket",
"version": "0.1.1",
"description": "Overloading square bracket operator [] and other array methods to any object with container using es6 proxy.",
"main": "index.js",
"scripts": {
"build": "npm run build:node",
"build:node": "rollup src/index.mjs -f cjs > index.js && rollup src/test.mjs -f cjs > test.js",
"build:browser": "rollup src/index.mjs -f iife --name=ObjectHandler > dist/index.browser.js",
"test": "npm run build && node test.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/munrocket/object-handler.git"
},
"keywords": [
"overload",
"brackets",
"pseudo-array",
"array-like",
"proxy",
"meta",
"meta-programming",
"es6"
],
"author": "munrocket",
"license": "MIT",
"bugs": {
"url": "https://github.com/munrocket/object-handler/issues"
},
"homepage": "https://github.com/munrocket/object-handler#readme",
"devDependencies": {
"rollup": "^0.63.2",
"tape": "^4.9.1"
}
}