-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.23 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": "pedigri",
"version": "0.3.1",
"description": "Get the one and only unique string to your component depending on their component tree channel",
"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/pedigri.git"
},
"author": "@javierlopezdeancos",
"license": "mpl-2.0",
"bugs": {
"url": "https://github.com/javierlopezdeancos/pedigri/issues"
},
"homepage": "https://github.com/javierlopezdeancos/pedigri#readme",
"devDependencies": {
"@types/jest": "^26.0.21",
"jest": "^26.6.3",
"jest-config": "^26.6.3",
"ts-jest": "^26.5.4",
"typescript": "^4.2.3"
}
}