This repository has been archived by the owner on Aug 14, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
77 lines (77 loc) · 2.61 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
{
"name": "nordnet-next-api",
"version": "5.1.2",
"description": "Nordnet nExt API Javascript client",
"main": "lib/index.js",
"scripts": {
"clean": "rimraf lib dist",
"build": "babel --presets es2015 --plugin add-module-exports 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 src || echo \"Linting failed...\"",
"lint": "run-s 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": "run-s lint test",
"prebuild": "run-s validate",
"prepush": "run-s validate",
"prepublish": "run-s 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-cli": "^6.6.5",
"babel-core": "6.4.0",
"babel-eslint": "4.1.6",
"babel-loader": "6.2.1",
"babel-plugin-add-module-exports": "0.1.2",
"babel-polyfill": "6.3.14",
"babel-preset-es2015": "6.3.13",
"chai": "^3.0.0",
"chai-as-promised": "^5.1.0",
"es5-shim": "^4.1.7",
"eslint": "1.10.3",
"eslint-config-airbnb": "3.1.0",
"husky": "^0.8.1",
"isparta": "^3.0.3",
"isparta-loader": "^0.2.0",
"karma": "^1.6.0",
"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": "^1.0.2",
"karma-sinon": "1.0.4",
"karma-source-map-support": "1.0.0",
"karma-sourcemap-loader": "0.3.4",
"karma-webpack": "^2.0.3",
"mocha": "^2.2.5",
"mocha-loader": "^0.7.1",
"node-libs-browser": "0.5.0",
"npm-run-all": "^4.1.2",
"phantomjs": "^2.1.7",
"rimraf": "^2.3.4",
"sinon": "^1.15.4",
"sinon-chai": "^2.8.0",
"webpack": "^1.9.6",
"webpack-dev-server": "^1.8.2"
},
"dependencies": {
"isomorphic-fetch": "^2.1.1"
}
}