forked from fhqvst/avanza
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1.01 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
{
"name": "avanza",
"version": "0.0.8",
"description": "A wrapper for the unofficial Avanza API",
"main": "dist/index.js",
"scripts": {
"test": "$(npm bin)/mocha --compilers js:babel-core/register ./test",
"build": "babel src --out-dir dist"
},
"repository": {
"type": "git",
"url": "git+https://github.com/fhqvst/avanza.git"
},
"author": "Filip Hallqvist <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/fhqvst/avanza/issues"
},
"homepage": "https://github.com/fhqvst/avanza#readme",
"devDependencies": {
"babel-cli": "^6.11.4",
"babel-core": "^6.11.4",
"babel-plugin-transform-class-properties": "^6.11.5",
"babel-preset-es2015": "^6.9.0",
"chai": "^3.5.0",
"chai-as-promised": "^5.3.0",
"dotenv": "^2.0.0",
"mocha": "^2.5.3",
"nodemon": "^1.9.2"
},
"babel": {
"presets": [
"es2015"
],
"plugins": [
"transform-class-properties"
]
},
"dependencies": {
"ws": "^1.1.1"
}
}