-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.24 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
{
"name": "ns-robo-advisor",
"version": "0.0.1",
"description": "node-stock robo advisor app",
"repository": {
"type": "git",
"url": "https://github.com/node-stock/ns-robo-advisor"
},
"license": "GPL3",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"scripts": {
"rm": "rimraf dist",
"dev": "cp config/config.dev.json config/config.json",
"tsc": "npm run rm && tsc -p tsconfig.development.json",
"tslint": "tslint --project ./tslint.json",
"test": "mocha dist/**/*.test.js --timeout 3000 --require intelli-espower-loader",
"prepare": "cp config/config.pduc.json config/config.json && npm run rm && tsc -p tsconfig.json"
},
"dependencies": {
"moment": "^2.19.0",
"ns-common": "0.0.11",
"rimraf": "^2.6.2"
},
"devDependencies": {
"@types/cheerio": "0.22.2",
"@types/config": "0.0.32",
"@types/lodash": "^4.14.74",
"@types/mocha": "^2.2.41",
"@types/node": "^8.0.20",
"@types/power-assert": "^1.4.29",
"config": "^1.26.1",
"debug": "^3.1.0",
"intelli-espower-loader": "^1.0.1",
"mocha": "^3.5.0",
"mysql2": "^1.4.2",
"power-assert": "^1.4.4",
"sqlite3": "^3.1.13",
"ts-node": "^3.3.0",
"tslint": "^5.6.0",
"typescript": "^2.4.2"
}
}