-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.45 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.45 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
57
58
59
60
61
{
"name": "tiny-atom",
"version": "6.0.2",
"description": "Pragmatic and concise state management.",
"main": "tiny-atom.cjs.js",
"module": "tiny-atom.esm.js",
"sideEffects": false,
"engines": {
"node": ">=20"
},
"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.28.3",
"@babel/core": "^7.28.3",
"@babel/plugin-transform-react-jsx": "^7.27.1",
"@babel/preset-env": "^7.28.3",
"@babel/register": "^7.28.3",
"ava": "^6.4.1",
"execa": "^9.6.0",
"healthier": "^7.0.0",
"jetpack": "^4.2.0",
"jsdom": "^26.1.0",
"nyc": "^17.1.0",
"preact": "^10.27.1",
"prettier": "^3.6.2",
"react": "^19.1.1",
"react-dom": "^19.1.1"
},
"ava": {
"files": [
"test/test-*.js"
],
"require": [
"@babel/register",
"./test/helpers/setup.js"
]
},
"np": {
"releaseDraft": false
}
}