-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 1.01 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": "lambert-w-function",
"version": "3.0.0",
"description": "A JavaScript implementation for the Lambert W Function on the principial branch.",
"main": "./dist/js/index.js",
"types": "./dist/definitions/index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/howion/lambert-w-function.git"
},
"keywords": [
"math",
"mathematics",
"lambert",
"omega-function",
"typescript"
],
"bugs": {
"url": "https://github.com/howion/lambert-w-function/issues"
},
"scripts": {
"dev": "gulp",
"build": "gulp build",
"prettier": "prettier --write ."
},
"author": "howion",
"license": "MIT",
"devDependencies": {
"del": "^6.0.0",
"gulp": "^4.0.2",
"gulp-clip-empty-files": "^0.1.2",
"gulp-plumber": "^1.2.1",
"gulp-typescript": "5.0.1",
"merge2": "^1.4.1",
"prettier": "^2.6.2",
"typescript": "^4.6.3"
}
}