-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 1.53 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
{
"name": "inertion",
"version": "0.2.3",
"repository": "github:mindplay-dk/inertion",
"source": "src/index.ts",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.mjs",
"require": "./dist/index.js"
}
},
"targets": {
"main": {
"includeNodeModules": true,
"optimize": true
},
"module": {
"includeNodeModules": true,
"optimize": true
}
},
"engines": {
"node": ">= 16"
},
"browserslist": "since 2020, Node 16",
"scripts": {
"test": "npm run report:save && npm run test:tsx && npm run test:ts-node",
"test:tsx": "tsx test/test.ts",
"test:ts-node": "ts-node test/test.ts",
"cover": "nyc tsx test/test.ts",
"report": "tsx test/report.ts",
"report:snapshot": "tsx test/report.ts > test/report.expected.txt",
"report:save": "tsx test/report.ts > test/report.actual.txt",
"build": "tsc --noEmit && parcel build",
"prepack": "npm run build"
},
"files": [
"dist"
],
"devDependencies": {
"@parcel/packager-ts": "^2.4.1",
"@parcel/transformer-typescript-types": "^2.4.1",
"@types/diff": "^5.0.2",
"@types/validator": "^13.7.2",
"ansi-colors": "^4.1.1",
"diff": "^5.0.0",
"fast-deep-equal": "^3.1.3",
"jest-serializer-ansi-escapes": "^2.0.1",
"nyc": "^15.1.0",
"parcel": "^2.4.1",
"pretty-format": "^29.1.2",
"ts-node": "^10.9.1",
"tsx": "^3.10.1",
"typescript": "~4.8",
"validator": "^13.7.0"
}
}