-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
37 lines (37 loc) · 855 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
31
32
33
34
35
36
37
{
"name": "array.observe",
"version": "0.0.1",
"description": "Array.observe polyfill based on ES7 spec",
"main": "array-observe.js",
"directories": {
"test": "test"
},
"scripts": {
"test": "node_modules/.bin/mocha",
"benchmark": "node benchmark/benchmarks.js"
},
"repository": {
"type": "git",
"url": "https://github.com/MaxArt2501/array-observe.git"
},
"keywords": [
"observe",
"data-binding",
"Object.observe"
],
"author": {
"name": "Massimo Artizzu",
"email": "[email protected]"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/MaxArt2501/array-observe/issues"
},
"homepage": "https://github.com/MaxArt2501/array-observe",
"devDependencies": {
"benchmark": "^1.0.0",
"expect.js": "^0.3.1",
"mocha": "^2.1.0",
"object.observe": "^0.2.4"
}
}