-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 1.13 KB
/
Copy pathpackage.json
File metadata and controls
37 lines (37 loc) · 1.13 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
{
"name": "node-wolfram-alpha",
"version": "1.1.0",
"description": "A tiny Wolfram API wrapper with async support.",
"main": "index.js",
"types": "index.d.ts",
"author": "Kamil Solecki <kamilczak020@gmail.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/Kamilczak020/node-wolfram-alpha"
},
"bugs": {
"url": "https://github.com/Kamilczak020/node-wolfram-alpha/issues"
},
"scripts": {
"dev": "webpack --mode development --display-optimization-bailout --display-error-details",
"build": "webpack --mode production --display-optimization-bailout --display-error-details"
},
"homepage": "https://github.com/Kamilczak020/node-wolfram-alpha#readme",
"devDependencies": {
"@types/axios": "^0.14.0",
"@types/node": "^10.0.6",
"awesome-typescript-loader": "^5.0.0",
"dts-generator-webpack-plugin": "^1.0.0",
"tslib": "^1.9.0",
"tslint": "^5.10.0",
"tslint-loader": "^3.6.0",
"typescript": "^2.8.3",
"webpack": "^4.8.2",
"webpack-bundle-analyzer": "^2.11.2",
"webpack-cli": "^2.1.3"
},
"dependencies": {
"axios": "^0.18.0"
}
}