forked from StableLib/stablelib
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
30 lines (30 loc) · 961 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
{
"name": "stablelib",
"private": true,
"version": "0.0.1",
"description": "Code library for TypeScript/JavaScript",
"main": "index.js",
"scripts": {
"build": "lerna bootstrap && lerna run build",
"test": "lerna run test",
"bench": "lerna run bench",
"lint": "tslint packages/**/*.ts",
"publish-all": "lerna publish",
"docs": "NODE_OPTIONS=\"--max_old_space_size=8192\" typedoc --out ../stablelib.github.io/ --excludeExternals --excludePrivate --externalPattern '**/node_modules/**' --exclude '**/*.+(test|test-data|bench).ts' --name 'StableLib' --entryPointStrategy packages ./packages/*"
},
"author": "Dmitry Chestnykh",
"license": "MIT",
"browser": {
"crypto": false,
"buffer": false
},
"devDependencies": {
"@types/jasmine": "^4.0.3",
"@types/node": "^18.7.6",
"jasmine": "^4.1.0",
"lerna": "^5.0.0",
"tslint": "^6.1.3",
"typedoc": "^0.22.15",
"typescript": "^4.7.2"
}
}