-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
38 lines (38 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
{
"name": "node-andreani",
"version": "1.0.2",
"description": "Package to interact with Andreani's API",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc",
"test": "env TS_NODE_COMPILER_OPTIONS='{\"module\": \"commonjs\" }' mocha -r ts-node/register 'spec/**/*.spec.ts' --timeout 7000",
"publish-package": "npm run build && npm publish --access public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/byeze/node-andreani.git"
},
"author": "Ezequiel Calonge",
"license": "MIT",
"bugs": {
"url": "https://github.com/byeze/node-andreani/issues"
},
"homepage": "https://github.com/byeze/node-andreani#readme",
"devDependencies": {
"@types/chai": "^4.2.14",
"@types/mocha": "^8.0.3",
"@types/node": "^14.14.2",
"chai": "^4.2.0",
"mocha": "^8.2.0",
"ts-loader": "^8.0.6",
"ts-node": "^9.0.0",
"typescript": "^4.0.3",
"webpack": "^5.2.0",
"webpack-cli": "^4.1.0",
"webpack-dev-server": "^3.11.0"
},
"dependencies": {
"axios": "^0.21.0"
}
}