-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
51 lines (51 loc) · 1.63 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
51
{
"name": "simple-fxtrade",
"version": "1.1.7",
"description": "A node js wrapper for the Oanda Rest v20 api to make things really simple",
"main": "dist/node.js",
"browser": "dist/browser.js",
"repository": {
"type": "git",
"url": "https://github.com/lteacher/simple-fxtrade.git"
},
"engines": {
"node": ">=7.7.1"
},
"scripts": {
"build": "coffee -co build index.coffee; coffee -co build/lib lib; webpack -p",
"build-coffee": "coffee -co build index.coffee; coffee -co build/lib lib",
"build-webpack": "webpack",
"clean": "rm -r dist/ build/",
"coverage": "nyc report --reporter=text-lcov | coveralls",
"test": "nyc --reporter=lcov --reporter=text mocha -t 10000 --compilers=coffee:coffeescript/register --require coffee-coverage/register-istanbul --recursive --bail test/unit test/integration",
"test-watch": "mocha -t 10000 --compilers=coffee:coffeescript/register test/unit test/integration -w --recursive --bail"
},
"author": "hugo.armstrong@gmail.com",
"license": "MIT",
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-loader": "^7.1.5",
"babel-preset-env": "^1.7.0",
"chai": "^3.5.0",
"coffee-coverage": "^2.0.1",
"coffeelint": "github:lteacher/coffeelint#build-cs2",
"coffeelint-newline-at-eof": "^0.4.1",
"coffeescript": "^2.3.2",
"coveralls": "^2.13.3",
"dotenv": "^4.0.0",
"json-loader": "^0.5.4",
"lodash": "^4.17.11",
"mocha": "^3.5.3",
"nyc": "^10.2.0",
"testdouble": "^2.1.2",
"webpack": "^3.12.0"
},
"dependencies": {
"axios": "^0.16.2"
},
"keywords": [
"forex",
"oanda",
"fxtrade"
]
}