forked from nordnet/nordnet-next-api
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
78 lines (78 loc) · 2.64 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
{
"name": "nordnet-next-api",
"version": "1.0.2",
"description": "Nordnet nExt API Javascript client",
"main": "lib/index.js",
"scripts": {
"clean": "rimraf lib dist",
"build": "babel src --out-dir lib",
"build:umd": "webpack --config ./webpack/webpack.config src/index.js dist/nordnet-next-api.js && NODE_ENV=production webpack --config ./webpack/webpack.config src/index.js dist/nordnet-next-api.min.js",
"eslint": "eslint --ext=.jsx --ext=.js -c .eslintrc src || echo \"Linting failed...\"",
"jscs": "jscs -c .jscsrc src",
"lint": "npm run jscs && npm run eslint",
"pretest": "rimraf reports/test-results.xml reports/coverage",
"test": "karma start ./test/karma.conf.js --reporters mocha,junit,coverage --source-map",
"test:debug": "karma start ./test/karma.conf.js --no-single-run --reporters mocha --browsers Chrome --source-map",
"test:tdd": "karma start ./test/karma.conf.js --auto-watch --no-single-run ",
"validate": "npm run lint && npm test",
"prebuild": "npm run validate",
"prepush": "npm run validate",
"prepublish": "npm run build",
"postpublish": "rimraf lib && git push --follow-tags"
},
"repository": {
"type": "git",
"url": "https://github.com/nordnet/nordnet-next-api.git"
},
"author": "Dmitry Demyankov <[email protected]>",
"license": "MIT",
"keywords": [
"Nordnet",
"nExt API"
],
"devDependencies": {
"babel": "^5.5.8",
"babel-core": "^5.6.18",
"babel-eslint": "^3.1.23",
"babel-jscs": "^2.0.3",
"babel-loader": "^5.1.4",
"chai": "^3.0.0",
"chai-as-promised": "^5.1.0",
"es5-shim": "^4.1.7",
"eslint": "^0.24.0",
"eslint-config-airbnb": "0.0.6",
"husky": "^0.8.1",
"isparta": "^3.0.3",
"isparta-loader": "^0.2.0",
"jscs": "jscs-dev/node-jscs#c5adeba",
"jscs-jsdoc": "^1.1.0",
"karma": "0.12.31",
"karma-chai": "0.1.0",
"karma-chai-plugins": "0.6.0",
"karma-chrome-launcher": "0.2.0",
"karma-cli": "0.0.4",
"karma-common-js": "0.2.2",
"karma-coverage": "0.4.2",
"karma-junit-reporter": "0.2.2",
"karma-mocha": "0.1.10",
"karma-mocha-reporter": "1.0.2",
"karma-phantomjs-launcher": "0.1.4",
"karma-sinon": "1.0.4",
"karma-source-map-support": "1.0.0",
"karma-sourcemap-loader": "0.3.4",
"karma-webpack": "1.5.1",
"mocha": "^2.2.5",
"mocha-loader": "^0.7.1",
"phantomjs": "^1.9.17",
"rimraf": "^2.3.4",
"sinon": "^1.15.4",
"sinon-chai": "^2.8.0",
"webpack": "^1.9.6",
"webpack-dev-server": "^1.8.2"
},
"dependencies": {
"es6-promise": "^2.3.0",
"isomorphic-fetch": "^2.1.1",
"lodash": "^3.10.0"
}
}