-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 1.58 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
50
51
52
53
54
55
56
57
58
59
60
{
"name": "@ii887522/hydro",
"version": "4.1.0",
"description": "It is a general purpose JavaScript/TypeScript library that can help developers create various kinds of applications in no time.",
"main": "index.js",
"scripts": {
"lint": "ts-standard",
"build": "tsc",
"build:watch": "tsc --watch",
"test": "cross-env NODE_OPTIONS=--experimental-vm-modules npx jest --coverage",
"test:ci": "cross-env NODE_OPTIONS=--experimental-vm-modules npx jest --coverage --ci",
"test:watch": "cross-env NODE_OPTIONS=--experimental-vm-modules npx jest --coverage --watchAll"
},
"type": "module",
"repository": {
"type": "git",
"url": "git+https://github.com/ii887522/hydro.git"
},
"keywords": [
"js-library",
"lib",
"javascript-library",
"typescript-library",
"general-purpose",
"general",
"javascript-lib",
"hydro",
"js-lib",
"ts-lib",
"ts-library",
"typescript-lib"
],
"author": "ii887522",
"license": "MIT",
"bugs": {
"url": "https://github.com/ii887522/hydro/issues"
},
"homepage": "https://github.com/ii887522/hydro",
"ts-standard": {
"ignore": [
"**/*.js"
]
},
"devDependencies": {
"@babel/core": "^7.16.10",
"@babel/preset-env": "^7.16.11",
"@babel/preset-typescript": "^7.16.7",
"@types/jest": "^27.4.0",
"@types/node": "^17.0.10",
"@types/readline-sync": "^1.4.4",
"babel-jest": "^27.4.6",
"cross-env": "^7.0.3",
"jest": "^27.4.7",
"ts-standard": "^11.0.0",
"typescript": "^4.5.5"
},
"dependencies": {
"readline-sync": "^1.4.10"
}
}