-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
36 lines (36 loc) · 904 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
{
"name": "technical-indicator",
"version": "0.4.1",
"description": "stock formula",
"main": "lib/index.js",
"types": "./lib/index.d.ts",
"scripts": {
"build": "./node_modules/.bin/tsc --declaration",
"prepublish": "npm run build",
"test": "npm run test-only",
"test-only": "jest --coverage",
"test:watch": "jest --watch"
},
"devDependencies": {
"@types/jest": "^22.2.3",
"jest": "^23.6.0",
"ts-jest": "^23.10.5",
"typescript": "^3.2.1"
},
"dependencies": {
"@types/ramda": "^0.25.48",
"ramda": "^0.22.1"
},
"peerDependencies": {},
"author": "Yulong Ruan <[email protected]>",
"license": "MIT",
"keywords": [
"typescript"
],
"repository": {
"type": "git",
"url": "https://github.com/ruanyl/formula.git"
},
"homepage": "https://github.com/ruanyl/formula",
"bugs": "https://github.com/ruanyl/formula/issues"
}