-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
46 lines (46 loc) · 1.15 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
{
"name": "gawk",
"version": "6.0.0",
"description": "Observable JavaScript object model",
"type": "module",
"exports": "./src/index.js",
"author": "Chris Barber <[email protected]> (https://github.com/cb1kenobi)",
"license": "MIT",
"keywords": [
"observable",
"observe",
"immutable",
"watch",
"notify",
"json",
"object",
"model"
],
"scripts": {
"coverage": "c8 npm run test",
"lint": "eslint src test",
"prepack": "npm run lint",
"test": "npm run lint && mocha test/**/test-*.js --require test/setup.js --reporter spec"
},
"dependencies": {
"fast-deep-equal": "^3.1.3"
},
"devDependencies": {
"c8": "^7.6.0",
"chai": "^4.3.0",
"eslint": "^7.20.0",
"eslint-plugin-chai-expect": "^2.2.0",
"eslint-plugin-mocha": "^8.0.0",
"eslint-plugin-promise": "^4.3.1",
"eslint-plugin-security": "^1.4.0",
"mocha": "^8.3.0",
"sinon": "^9.2.4",
"sinon-chai": "^3.5.0"
},
"homepage": "https://github.com/cb1kenobi/gawk",
"bugs": "https://github.com/cb1kenobi/gawk/issues",
"repository": "https://github.com/cb1kenobi/gawk",
"engines": {
"node": ">=12"
}
}