-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
43 lines (43 loc) · 1.06 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
{
"name": "dataclass",
"version": "3.0.0-beta.1",
"description": "Data classes for TypeScript & JavaScript",
"author": "Oleksii Raspopov",
"license": "ISC",
"homepage": "https://dataclass.js.org",
"repository": "alexeyraspopov/dataclass",
"main": "./dataclass.js",
"module": "./dataclass.module.js",
"types": "./dataclass.d.ts",
"sideEffects": false,
"files": [
"dataclass.*"
],
"keywords": [
"dataclass",
"immutable",
"value-objects",
"data-structures",
"typings"
],
"scripts": {
"test": "vitest",
"integration": "tsx --tsconfig integration/$TARGET.json --experimental-test-coverage integration/integration.js",
"build": "rollup --config rollup.config.mjs"
},
"devDependencies": {
"@vitest/coverage-istanbul": "^1.5.0",
"flow-bin": "^0.234.0",
"prettier": "^2.4.1",
"rollup": "^4.15.0",
"rollup-plugin-copy": "^3.4.0",
"tsx": "^4.7.2",
"typescript": "^5.4.5",
"vitest": "^1.5.0"
},
"prettier": {
"printWidth": 100,
"trailingComma": "all",
"proseWrap": "always"
}
}