-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.25 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
{
"name": "nativous",
"version": "0.1.0",
"description": "The library for rendering JSX directly to the DOM.",
"main": "dist/index.js",
"directories": {
"test": "tests"
},
"scripts": {
"test": "jest",
"lint": "eslint --fix",
"build": "tsup"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/neila-a/nativous.git"
},
"types": "dist/index.d.ts",
"keywords": [
"javascript",
"library",
"ui",
"frontend"
],
"author": {
"name": "Neila",
"email": "[email protected]",
"url": "https://neilasite.netlify.app/"
},
"license": "LGPL-3.0-or-later",
"bugs": {
"url": "https://github.com/neila-a/nativous/issues"
},
"homepage": "https://github.com/neila-a/nativous#readme",
"packageManager": "[email protected]+sha256.dbdf5961c32909fb030595a9daa1dae720162e658609a8f92f2fa99835510ca5",
"devDependencies": {
"@testing-library/jest-dom": "^6.4.8",
"@types/jest": "^29.5.12",
"eslint": "^9.8.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"ts-jest": "^29.2.3",
"ts-node": "^10.9.2",
"tsup": "^8.2.3"
}
}