-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.04 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.04 KB
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
{
"name": "ypersdk-node",
"version": "1.0.4",
"description": "Yper API SDK",
"main": "index.js",
"dependencies": {
"dotenv": "^8.0.0",
"request-promise": "^4.2.4"
},
"devDependencies": {
"@babel/core": "^7.4.5",
"@babel/node": "^7.4.5",
"@babel/preset-env": "^7.4.5",
"babel-core": "^6.26.3",
"babel-loader": "^8.0.6",
"babel-polyfill": "^6.26.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"jest": "^24.8.0",
"nodemon": "^1.19.1"
},
"scripts": {
"start": "nodemon --exec babel-node index.js",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/yperteam/ypersdk-node.git"
},
"keywords": [],
"author": "iGitScor <sebastien.correaud@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/yperteam/ypersdk-node/issues"
},
"homepage": "https://github.com/yperteam/ypersdk-node#readme",
"engines": {
"node": ">=8"
},
"files": [
"*.js",
".babelrc",
"service/**/*.js"
]
}