-
Notifications
You must be signed in to change notification settings - Fork 38
/
package.json
50 lines (50 loc) · 1.45 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
{
"name": "@reiryoku/mida",
"version": "2.0.0",
"description": "A JavaScript framework to easily operate in global financial markets.",
"license": "MIT",
"homepage": "https://github.com/Reiryoku-Technologies/Mida",
"bugs": {
"url": "https://github.com/Reiryoku-Technologies/Mida/issues"
},
"author": {
"name": "Vasile Pește / Reiryoku Technologies",
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": "https://github.com/Reiryoku-Technologies/Mida.git"
},
"scripts": {
"lint": "tslint --project .",
"build": "ttsc",
"test": "npm run build && jest --verbose",
"create-docs": "typedoc",
"safe-build": "rm -rf ./build && npm run lint && npm run build && jest",
"prepublishOnly": "npm run safe-build"
},
"main": "./build/entry/node/main.js",
"types": "./build/entry/node/main.d.ts",
"files": [
"build",
"entry",
"src",
"tests"
],
"dependencies": {
"puppeteer": "8.0.0",
"uuid": "8.3.2"
},
"devDependencies": {
"@types/jest": "26.0.20",
"@types/node": "12.7.2",
"@types/puppeteer": "5.4.3",
"@types/uuid": "8.3.0",
"jest": "26.6.3",
"tslint": "5.18.0",
"ttypescript": "1.5.12",
"typedoc": "0.20.19",
"typescript": "4.1.5",
"typescript-transform-paths": "2.2.3"
}
}