-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.28 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
{
"name": "ns-trader",
"version": "0.0.9",
"description": "node-stock trader module",
"repository": {
"type": "git",
"url": "https://github.com/node-stock/ns-trader"
},
"license": "GPL3",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"scripts": {
"wdserv": "selenium-standalone start",
"wdio": "wdio repl chrome",
"rm": "rimraf dist",
"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": {
"moment": "^2.19.1",
"ns-common": "0.0.11",
"ns-types": "0.0.5",
"numeral": "^2.0.6",
"toml": "^2.3.3",
"webdriverio": "^4.8.0"
},
"devDependencies": {
"@types/config": "0.0.32",
"@types/mocha": "^2.2.41",
"@types/node": "^8.0.20",
"@types/numeral": "0.0.22",
"@types/power-assert": "^1.4.29",
"@types/webdriverio": "^4.8.6",
"config": "^1.26.1",
"cross-env": "^5.1.0",
"intelli-espower-loader": "^1.0.1",
"mocha": "^3.5.0",
"power-assert": "^1.4.4",
"rimraf": "^2.6.2",
"ts-node": "^3.3.0",
"tslint": "^5.6.0",
"typescript": "^2.4.2"
}
}