-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
39 lines (39 loc) · 1.08 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
{
"name": "@ailabs/ts-utils",
"version": "1.4.0",
"description": "Shared TypeScript utilities",
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"sideEffects": false,
"scripts": {
"build": "rm -rf ./dist && yarn test && tsc -p ./tsconfig.json && echo 'Built to ./dist'",
"test": "mocha -r ts-node/register src/**/*.spec.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ai-labs-team/ts-utils.git"
},
"author": "Nate Abele <natea@advisorinnovationlabs.com>",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/ai-labs-team/ts-utils/issues"
},
"homepage": "https://github.com/ai-labs-team/ts-utils#readme",
"dependencies": {
"ramda": "^0.26.1",
"seedrandom": "3.0.5",
"ts-toolbelt": "^4.8.19"
},
"devDependencies": {
"@types/chai": "^4.2.0",
"@types/mocha": "^5.2.7",
"@types/node": "13.7.7",
"@types/ramda": "^0.26.33",
"@types/seedrandom": "2.4.28",
"chai": "^4.2.0",
"mocha": "^6.2.0",
"ts-node": "^8.3.0",
"typescript": "^4.1.3"
}
}