-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
34 lines (34 loc) · 916 Bytes
/
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
{
"name": "@turnio/integration",
"version": "1.3.11",
"description": "Tools for building Turn.io integrations with Javascript",
"main": "lib/index.js",
"scripts": {
"pretest": "yarn build",
"test": "mocha -R spec lib/spec.js",
"preserve": "yarn build",
"serve": "node lib/server.js",
"build": "babel --delete-dir-on-start src -d lib",
"prepare": "yarn build"
},
"author": "Simon de Haan <[email protected]>",
"license": "MIT",
"dependencies": {
"body-parser": "^1.19.0",
"debug": "^4.1.1",
"express": "^4.17.1"
},
"repository": {
"type": "git",
"url": "https://github.com/turnhub/turnio-integration"
},
"devDependencies": {
"@babel/cli": "^7.7.4",
"@babel/core": "^7.7.4",
"@babel/plugin-proposal-class-properties": "^7.7.4",
"@babel/preset-env": "^7.7.4",
"chai": "^4.2.0",
"mocha": "^6.2.1",
"supertest": "^4.0.2"
}
}