-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 952 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
35
36
37
38
{
"name": "arithmetic.js",
"version": "1.0.0",
"description": "Simple javascript arithmetic operations",
"main": "dist/index.js",
"private": true,
"scripts": {
"build": "tsc",
"lint": "tslint --project tsconfig.json",
"install": "npm run build",
"start": "echo \"npm start is not implemented.\"",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/JDTheRipperPC/arithmetic.js.git"
},
"keywords": [
"TypeScript",
"javascript",
"mathematics",
"arithmetic operators",
"arithmetic operations"
],
"author": "JD The Ripper PC",
"license": "ISC",
"bugs": {
"url": "https://github.com/JDTheRipperPC/arithmetic.js/issues"
},
"homepage": "https://github.com/JDTheRipperPC/arithmetic.js",
"devDependencies": {
"@types/jest": "^24.0.15",
"jest": "^24.8.0",
"ts-jest": "^24.0.2",
"tslint": "^5.18.0",
"typescript": "^3.5.2"
}
}