-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.02 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
{
"name": "ejercicios_html",
"devDependencies": {
"@cypress/request": "^3.0.1",
"eslint": "^9.6.0",
"globals": "^15.8.0",
"node-gyp": "^10.1.0",
"npm": "^10.8.1",
"semver": "^7.6.2",
"ts-node": "^10.9.1",
"ts-node-dev": "^2.0.0",
"typescript": "^5.5.3"
},
"scripts": {
"make": "ts-node --transpile-only --project ./tsconfig.json",
"test": "ts-node --transpile-only --project ./tsconfig.json test/test.ts",
"build": "tsc",
"lint": "tslint -c tslint.json src/**/*.ts",
"prepublish": "npm run build"
},
"dependencies": {
"audit": "^0.0.6",
"fix": "^0.0.3",
"package-lock.json": "^1.0.0",
"package.json": "^0.0.0",
"tslint": "^6.1.3"
},
"version": "1.0.0",
"description": "",
"main": "./lib/index.js",
"repository": {
"type": "git",
"url": "ejercicios_html"
},
"keywords": [
"html"
],
"author": {
"name": "Kimikaze"
},
"license": "ISC",
"files": [
"./bin/*",
"./lib/*"
],
"typings": "./lib/index.d.ts"
}