-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 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
39
40
41
42
43
44
45
46
47
48
{
"name": "shtam",
"version": "0.1.2",
"description": "a package library for numbers :)",
"source": "source/shtam.ts",
"main": "umd/shtam.js",
"module": "esm/sdrow.js",
"files": [
"umd"
],
"repository": {
"type": "git",
"url": "git+https://github.com/noltron000/shtam.git"
},
"keywords": [
"arithmetical",
"arithmetic",
"calculator",
"number",
"digit",
"math",
"maths",
"shtam"
],
"author": "noltron000",
"license": "MIT",
"bugs": {
"url": "https://github.com/noltron000/shtam/issues"
},
"homepage": "https://github.com/noltron000/shtam#readme",
"devDependencies": {
"@types/jest": "^24.0.21",
"coveralls": "^3.0.7",
"jest": "^24.9.0",
"rollup": "^1.27.9",
"rollup-plugin-terser": "^5.1.2",
"rollup-plugin-typescript2": "^0.25.3",
"terser": "^4.4.2",
"ts-jest": "^24.1.0",
"typescript": "^3.6.4"
},
"dependencies": {},
"scripts": {
"test": "jest --coverage",
"test:coveralls": "jest --coverage --coverageReporters=text-lcov | coveralls",
"rollup": "rollup -c"
}
}