-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.07 KB
/
Copy pathpackage.json
File metadata and controls
42 lines (42 loc) · 1.07 KB
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
{
"name": "state",
"version": "1.0.8",
"type": "module",
"description": "State API is a javascript interface for storing values and managing callbacks for changes to those value",
"main": "state.js",
"directories": {
"test": "test"
},
"scripts": {
"test": "NODE_OPTIONS=--expose-gc node --import ./test/loader.js --test **/*Test.js",
"test:only": "NODE_OPTIONS=--expose-gc node --import ./test/loader.js --test-only --test **/*Test.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/bemky/state.git"
},
"keywords": [
"callback",
"changes",
"listeners",
"state"
],
"author": "Ben Ehmke <benehmke@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/bemky/state/issues"
},
"homepage": "https://github.com/bemky/state#readme",
"devDependencies": {
"viking": "github:malomalo/viking",
"dolla": "^1.6.0",
"happy-dom": "^18.0.1"
},
"peerDependency": {
"viking": "github:malomalo/viking",
"dolla": "^1.6.0"
},
"peerDependenciesMeta": {
"optional": true
}
}