-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 1.06 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
{
"name": "sblib",
"version": "1.0.0",
"description": "Helps to build SDK which will support Http calls, Sockets, validatons and etc...",
"main": "index.js",
"scripts": {
"build:es5": "babel src --out-dir es5",
"lint": "eslint src",
"test": "nyc mocha --require babel-core/register",
"coverage": "nyc report --reporter=text-lcov | npx coveralls"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nairihar/bsdk.git"
},
"author": "Nairi Harutyunyan",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/nairihar/bsdk/issues"
},
"keywords": [
"javascript",
"sdk",
"front-end",
"sdk-builder"
],
"homepage": "https://github.com/nairihar/bsdk#readme",
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.3",
"babel-eslint": "^8.2.3",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.7.0",
"coveralls": "^3.0.1",
"eslint": "^4.19.1",
"mocha": "^5.1.1",
"nyc": "^11.7.3"
}
}