-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1.06 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
{
"name": "object-observable-lite",
"version": "1.0.2",
"description": "Observe object changes deeply without cloning in an efficient manner.",
"main": "index.js",
"scripts": {
"test": "mocha -b --exit",
"coverage": "nyc --reporter=text npm run test",
"coverage-html": "nyc --reporter=html npm run test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Stieneee/object-observable-lite.git"
},
"keywords": [
"observe",
"object-observe",
"observable",
"proxy",
"on-change",
"changes"
],
"author": "Tyler Stiene <tystiene@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/Stieneee/object-observable-lite/issues"
},
"homepage": "https://github.com/Stieneee/object-observable-lite#readme",
"devDependencies": {
"chai": "^4.3.4",
"clone": "^2.1.2",
"eslint": "^7.30.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-plugin-import": "^2.23.4",
"mixin-deep": "^2.0.1",
"mocha": "^9.0.2",
"nyc": "^15.1.0",
"release-it": "^14.10.0"
}
}