-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.22 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
{
"name": "laguagua",
"version": "0.2.0",
"main": "./lib/cjs/index.js",
"module": "./lib/esm/index.js",
"types": "./lib/esm/index.d.ts",
"files": [
"/lib"
],
"type": "module",
"jest": {
"transform": {
".(ts|tsx)": "<rootDir>/node_modules/ts-jest/preprocessor.js"
},
"testRegex": "(/__tests__/.*|\\.(test|spec))\\.(ts|tsx|js)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js"
]
},
"scripts": {
"build": "npm run build:esm && npm run build:cjs",
"build:esm": "tsc",
"build:cjs": "tsc --module commonjs --outDir lib/cjs",
"test": "jest",
"test:watch": "jest --watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/javierlopezdeancos/laguagua.git"
},
"keywords": [
"typescript",
"bus"
],
"author": "Javier Lopez de Ancos",
"license": "MIT",
"bugs": {
"url": "https://github.com/javierlopezdeancos/laguagua/issues"
},
"homepage": "https://github.com/javierlopezdeancos/laguagua#readme",
"dependencies": {
"cologrinchis": "^0.1.2"
},
"devDependencies": {
"@types/jest": "^26.0.21",
"jest": "^26.6.3",
"jest-config": "^26.6.3",
"ts-jest": "^26.5.4",
"typescript": "^4.2.3"
}
}