-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
62 lines (62 loc) · 1.47 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
56
57
58
59
60
61
62
{
"name": "tiny-atom",
"version": "6.0.0",
"description": "Pragmatic and concise state management.",
"main": "tiny-atom.cjs.js",
"module": "tiny-atom.esm.js",
"sideEffects": false,
"engines": {
"node": ">=16"
},
"scripts": {
"coverage": "nyc --reporter html ava",
"test": "npm run lint && nyc ava",
"lint": "healthier && prettier --check '**/*.{js,json,css,yml}'",
"format": "prettier --write '**/*.{js,json,css,yml}'",
"build": "node ./tasks/build.js",
"version": "npm run build",
"release": "np --contents dist"
},
"repository": {
"type": "git",
"url": "git+https://github.com/KidkArolis/tiny-atom.git"
},
"contributors": [
"Karolis Narkevicius <hello@kn8.lt>",
"Alan Clarke <alan@qubit.com>"
],
"license": "ISC",
"dependencies": {
"deep-diff": "^1.0.2"
},
"devDependencies": {
"@babel/cli": "^7.23.0",
"@babel/core": "^7.23.2",
"@babel/plugin-transform-react-jsx": "^7.22.15",
"@babel/preset-env": "^7.23.2",
"@babel/register": "^7.22.15",
"ava": "^5.3.1",
"execa": "^8.0.1",
"healthier": "^6.4.0",
"jetpack": "^1.2.1",
"jsdom": "^22.1.0",
"np": "^8.0.4",
"nyc": "^15.1.0",
"preact": "^10.18.1",
"prettier": "^3.0.3",
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"ava": {
"files": [
"test/test-*.js"
],
"require": [
"@babel/register",
"./test/helpers/setup.js"
]
},
"np": {
"releaseDraft": false
}
}