-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
41 lines (41 loc) · 879 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
{
"name": "@saulx/utils",
"version": "6.3.0",
"repository": "https://github.com/atelier-saulx/utils",
"files": [
"dist/src"
],
"license": "MIT",
"scripts": {
"clean": "rimraf {dist,node_modules}",
"build": "tsc",
"watch": "tsc --watch",
"test": "tsc && node scripts/run-tests.mjs"
},
"browser": {
"./dist/src/readStream.js": false
},
"type": "module",
"main": "./dist/src/index.js",
"ava": {
"concurrency": 0,
"timeout": "2m",
"files": [
"./dist/test/**/*.js"
]
},
"prettier": "@saulx/prettier-config",
"dependencies": {
"@saulx/hash": "^3.0.0",
"path": "^0.12.7"
},
"devDependencies": {
"@saulx/prettier-config": "^1.0.0",
"@saulx/tsconfig": "^1.0.6",
"@types/node": "18",
"ava": "5.3.1",
"rimraf": "^6.0.1",
"ts-node": "^10.9.2",
"typescript": "^5.2.2"
}
}