-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.15 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
49
{
"name": "from_ruby",
"version": "1.0.0",
"description": "A javascript package to improvement your applications with ruby utils methods.",
"main": "build/src/index.js",
"types": "build/src/index.d.ts",
"files": [
"build/src"
],
"scripts": {
"test": "jest",
"test:coverage": "jest --collect-coverage",
"lint": "gts lint",
"clean": "gts clean",
"compile": "tsc -p tsconfig.build.json",
"fix": "gts fix",
"prepare": "npm run compile",
"pretest": "npm run compile",
"posttest": "npm run lint"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Viserion77/from_ruby.git"
},
"keywords": [
"ruby",
"javascript",
"typescript",
"utils"
],
"author": "@viserion77",
"license": "MIT",
"bugs": {
"url": "https://github.com/Viserion77/from_ruby/issues"
},
"homepage": "https://github.com/Viserion77/from_ruby#readme",
"devDependencies": {
"@types/jest": "^29.0.2",
"@types/node": "^16.0.0",
"gts": "^4.0.0",
"jest": "^28.1.3",
"ts-jest": "^28.0.8",
"ts-node": "^10.9.1",
"typescript": "~4.7.0"
},
"directories": {
"test": "test"
}
}