-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.72 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.72 KB
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
51
52
53
54
55
56
57
58
59
60
61
{
"name": "ns-expert-advisor",
"version": "0.0.17",
"description": "node-stock expert advisor app",
"repository": {
"type": "git",
"url": "https://github.com/node-stock/ns-expert-advisor"
},
"license": "GPL3",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"scripts": {
"start": "node dist/index.js",
"rm": "rimraf dist",
"wdserv": "selenium-standalone start",
"tsc": "npm run rm && tsc -p tsconfig.development.json",
"tslint": "tslint --project ./tslint.json",
"test": "cross-env NODE_ENV=test mocha dist/**/*.test.js --timeout 5000 --require intelli-espower-loader",
"prepare": "npm run rm && tsc -p tsconfig.json"
},
"dependencies": {
"bignumber.js": "^5.0.0",
"es6-promise": "^4.1.1",
"isomorphic-fetch": "^2.2.1",
"lokijs": "^1.5.1",
"moment": "^2.19.3",
"mysql2": "^1.5.1",
"ns-alerter": "0.0.12",
"ns-common": "0.0.19",
"ns-findata": "0.0.38",
"ns-manager": "0.0.71",
"ns-signal": "0.0.28",
"ns-store": "0.0.51",
"ns-types": "0.0.62",
"numeral": "^2.0.6",
"rimraf": "^2.6.2",
"semver": "^5.4.1",
"sequelize": "^4.28.6",
"toml": "^2.3.3"
},
"devDependencies": {
"@types/bignumber.js": "^5.0.0",
"@types/config": "0.0.33",
"@types/isomorphic-fetch": "0.0.34",
"@types/mocha": "^2.2.41",
"@types/moment": "^2.13.0",
"@types/node": "^8.5.1",
"@types/numeral": "0.0.22",
"@types/power-assert": "^1.4.29",
"config": "^1.28.1",
"cross-env": "^5.1.1",
"debug": "^3.1.0",
"inflection": "^1.12.0",
"intelli-espower-loader": "^1.0.1",
"mocha": "^4.0.1",
"power-assert": "^1.4.4",
"ts-node": "^4.0.1",
"tslint": "^5.8.0",
"typescript": "^2.6.1"
}
}