-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
34 lines (34 loc) · 896 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": "tnrc",
"version": "1.0.3",
"description": "TNRCis a library to get data from Tunisian companies registry \"Registre de commerce\". It uses public data available on http://www.registre-commerce.tn.",
"main": "dist/tnrc.js",
"author": "Tarek Djebali",
"dependencies": {
"@babel/polyfill": "^7.2.5",
"cheerio": "^1.0.0-rc.2",
"cheerio-tableparser": "^1.0.1",
"puppeteer": "^1.12.0"
},
"devDependencies": {
"@babel/cli": "^7.2.0",
"@babel/preset-env": "^7.3.0",
"rimraf": "^2.6.2",
"jest": "^24.1.0"
},
"scripts": {
"test": "jest --detectOpenHandles --forceExit",
"prebuild": "rimraf dist",
"build": "babel src --out-dir dist",
"watch": "babel --watch src --out-dir dist"
},
"keywords": [],
"babel": {
"presets": [
"@babel/preset-env"
],
"plugins": [],
"ignore": []
},
"license": "MIT"
}