forked from fhqvst/avanza
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.31 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
52
53
54
{
"name": "avanza",
"version": "2.0.0",
"description": "A wrapper for the unofficial Avanza API",
"main": "dist/index.js",
"scripts": {
"start": "cross-env NODE_ENV=production babel lib -d dist",
"test": "npm start && cross-env NODE_ENV=test NODE_PATH=lib ava tests/**/*.test.js",
"lint": "eslint lib/**/*",
"docs": "npm start && node scripts/generate-documentation.js",
"prepublishOnly": "npm run lint"
},
"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"
},
"files": [
"dist"
],
"homepage": "https://github.com/fhqvst/avanza#readme",
"dependencies": {
"ws": "3.2.0"
},
"devDependencies": {
"ava": "^0.22.0",
"babel-cli": "^6.24.0",
"babel-preset-env": "^1.6.0",
"cross-env": "^5.0.5",
"documentation": "^4.0.0-rc.1",
"dotenv": "^2.0.0",
"eslint": "^3.9.1",
"eslint-config-airbnb-base": "^11.2.0",
"eslint-plugin-import": "^2.12.0",
"sinon": "^2.3.6"
},
"babel": {
"presets": [
[
"env",
{
"targets": {
"browsers": "last 2 versions",
"node": "6.11"
}
}
]
]
}
}