-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
37 lines (37 loc) · 1.14 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
{
"name": "@open-platform/open-api-js-sdk",
"description": "A library for interactions with Open Platform.",
"version": "${VERSION}",
"license": "MIT",
"scripts": {
"build": "webpack --mode development --env dev && webpack --mode production --env build",
"dev": "webpack --mode development --progress --colors --watch --env dev",
"test": "mocha --require babel-core/register --colors ./test/*.spec.js",
"test:watch": "mocha --require babel-core/register --colors -w ./test/*.spec.js"
},
"main": "dist/main.js",
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.3",
"babel-eslint": "^8.2.3",
"babel-loader": "^7.1.4",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.7.0",
"chai": "^4.1.2",
"eslint": "^4.19.1",
"eslint-loader": "^2.0.0",
"mocha": "^5.2.0",
"nock": "^9.4.2",
"webpack": "^4.12.0",
"webpack-cli": "^3.0.8",
"yargs": "^11.0.0"
},
"dependencies": {
"axios": "^0.18.0"
},
"repository": {
"type": "git",
"url": "https://github.com/OpenFuturePlatform/open-api-js-sdk.git"
}
}