-
-
Notifications
You must be signed in to change notification settings - Fork 46
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 649 Bytes
/
Copy pathpackage.json
File metadata and controls
36 lines (36 loc) · 649 Bytes
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
{
"name": "@medv/numbr",
"version": "1.0.0",
"description": "A smart calculator",
"main": "index.js",
"scripts": {
"test": "ava"
},
"repository": "antonmedv/numbr",
"keywords": [
"calculator"
],
"author": "Anton Medvedev <anton@medv.io>",
"license": "MIT",
"homepage": "https://numbr.dev",
"devDependencies": {
"ava": "^4.0.1"
},
"ava": {
"files": [
"**/*.test.ts"
],
"extensions": [
"ts"
],
"require": [
"ts-node/register"
]
},
"dependencies": {
"@types/big.js": "^6.1.2",
"big.js": "^6.1.1",
"ts-node": "^10.4.0",
"typescript": "^4.5.4"
}
}