forked from humaans/figbird
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.31 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.31 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
{
"name": "figbird",
"version": "0.12.0",
"description": "Effortless realtime data management for React + Feathers applications.",
"main": "dist/cjs",
"module": "dist/esm",
"scripts": {
"test": "npm run build && healthier && prettier --check '**/*.{js,css,yml}' && nyc ava",
"format": "prettier --write '**/*.{js,css,yml}'",
"coverage": "nyc --reporter=html ava",
"build": "node ./tasks/build.js",
"watch": "node ./tasks/build.js -w",
"release": "np",
"release:beta": "np --tag=beta",
"release:docs": "hugo -s docs && gh-pages -d docs/public"
},
"author": "",
"license": "ISC",
"dependencies": {
"sift": "^17.0.1",
"tiny-atom": "^5.0.0-pre.2"
},
"devDependencies": {
"@swc-node/register": "^1.6.4",
"@swc/cli": "^0.1.62",
"@swc/core": "^1.3.49",
"ava": "^5.2.0",
"execa": "^7.1.1",
"gh-pages": "^5.0.0",
"healthier": "^6.3.0",
"jsdom": "^21.1.1",
"nyc": "^15.1.0",
"prettier": "^2.8.7",
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"sideEffects": false,
"healthier": {
"ignore": [
"docs/static/*.min*"
]
},
"ava": {
"serial": true,
"files": [
"test/*.test.js"
],
"require": [
"@swc-node/register",
"./test/setup.js"
]
},
"np": {
"releaseDraft": false
}
}