-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
55 lines (55 loc) · 1.14 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
47
48
49
50
51
52
53
54
55
{
"name": "mutent",
"version": "6.0.1",
"description": "An agnostic solution to work with any Datastore",
"type": "module",
"exports": {
"import": "./mutent.mjs",
"require": "./mutent.cjs",
"types": "./mutent.d.ts"
},
"main": "./mutent.cjs",
"types": "./mutent.d.ts",
"files": [
"lib",
"!**/*.spec.mjs",
"mutent.mjs",
"mutent.cjs",
"mutent.d.ts"
],
"keywords": [
"agnostic",
"database",
"entity",
"immutable",
"iterable",
"mutator",
"mutation",
"store",
"stream"
],
"scripts": {
"docsify": "docsify serve .",
"lint": "standard",
"test": "c8 ava",
"build": "rollup -c",
"prepublishOnly": "npm run lint && npm run build && npm test"
},
"author": "Giacomo Gregoletto",
"license": "MIT",
"devDependencies": {
"ava": "^6.1.3",
"c8": "^10.1.2",
"docsify-cli": "^4.4.4",
"rollup": "^4.20.0",
"standard": "^17.1.0"
},
"repository": {
"type": "git",
"url": "https://github.com/greguz/mutent.git"
},
"homepage": "https://greguz.github.io/mutent/",
"bugs": {
"url": "https://github.com/greguz/mutent/issues"
}
}