-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
44 lines (44 loc) · 1023 Bytes
/
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
{
"name": "awai",
"version": "1.0.0-rc-3",
"author": "Yuriy Yakym",
"description": "State management library",
"license": "MIT",
"main": "dist/index.js",
"module": "dist/index.mjs",
"typings": "dist/index.d.ts",
"type": "module",
"files": [
"dist"
],
"scripts": {
"build": "rm -rf dist && rollup -c rollup.config.js",
"test": "vitest run",
"test:watch": "vitest",
"test:ci": "vitest --coverage.enabled --coverage.reporter='json-summary'",
"coverage": "vitest --coverage"
},
"repository": {
"type": "git",
"url": "git+https://github.com/yuriyyakym/awai.git"
},
"bugs": {
"url": "https://github.com/yuriyyakym/awai/issues"
},
"keywords": [
"state",
"library",
"typescript",
"javascript",
"promise",
"async"
],
"devDependencies": {
"@vitest/coverage-v8": "^0.34.6",
"rollup": "^4.6.0",
"rollup-plugin-dts": "^6.1.0",
"rollup-plugin-esbuild": "^6.1.0",
"typescript": "^5.3.2",
"vitest": "^0.34.6"
}
}