-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathpackage.json
32 lines (32 loc) · 842 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
{
"name": "wryware",
"private": true,
"author": "Ben Newman <[email protected]>",
"description": "A collection of packages that are probably a little too clever",
"license": "MIT",
"type": "module",
"scripts": {
"postinstall": "lerna exec -- npm install --ignore-scripts",
"build": "nx run-many --target=build --all --parallel",
"test": "nx run-many --target=test --all --parallel",
"deploy": "lerna publish --no-push --dist-tag next"
},
"devDependencies": {
"@nx/js": "^17.1.3",
"@types/mocha": "^10.0.1",
"@types/node": "20.4.6",
"lerna": "^8.0.0",
"mocha": "^10.2.0",
"nx": "^17.1.3",
"rimraf": "5.0.5",
"rollup": "4.5.0",
"source-map-support": "0.5.21",
"typescript": "5.1.6"
},
"engines": {
"node": ">=8"
},
"dependencies": {
"tslib": "^2.4.0"
}
}