-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
52 lines (52 loc) · 1.02 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
{
"name": "statin",
"version": "3.1.0",
"description": "Simple and tiny reactive state library.",
"homepage": "https://github.com/tomasklaen/statin",
"bugs": "https://github.com/tomasklaen/statin/issues",
"repository": {
"type": "git",
"url": "git+https://github.com/tomasklaen/statin.git"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"keywords": [
"reactive",
"state"
],
"author": "tomasklaen",
"license": "MIT",
"files": [
"dist"
],
"engines": {
"node": ">=12"
},
"scripts": {
"build": "tsc",
"watch": "tsc --watch",
"clean": "rimraf dist",
"start": "ava --watch",
"test": "ava",
"preversion": "npm-run-all clean build",
"git-push": "git push",
"npm-publish": "npm publish",
"postversion": "npm-run-all git-push npm-publish"
},
"ava": {
"extensions": [
"ts"
],
"require": [
"ts-node/register"
]
},
"devDependencies": {
"ava": "^4.0.1",
"npm-run-all": "^4.1.5",
"rimraf": "^3.0.2",
"ts-node": "^10.4.0",
"tslib": "^2.3.1",
"typescript": "^4.5.4"
}
}