-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
85 lines (85 loc) · 2.53 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
{
"name": "@guebbit/javascript-library",
"version": "1.0.5",
"author": "Andrea Guerzoni",
"description": "Javascript Library",
"license": "MIT",
"scripts": {
"doc": "",
"test": "npm run test:lint && npm run test:unit",
"test:lint": "eslint \"*/**/*.{ts,js,json}\"",
"test:unit": "jest",
"test:main": "jest tests/index.test.ts",
"test:target": "jest tests/checkers/ishex.test.ts",
"lint": "eslint \"*/**/*.{ts,js,json}\" --fix",
"types:build": "tsc",
"rollup:build": "rollup --config rollup.config.mjs",
"rollup:serve": "rollup -cw",
"prepublish": "npm run doc && npm run types:build && npm run rollup:build && npm run test && npm run lint",
"publish:public": "npm publish --access public",
"cypress": "cypress run --browser chrome",
"cypress:open": "cypress open",
"cypress:serve": "http-server ./cypress/public/ -i -c-1 -d --cors -a localhost -p 8000"
},
"cdn": "dist/index.umd.js",
"main": "dist/index.js",
"types": "types/index.d.ts",
"unpkg": "dist/index.umd.js",
"module": "dist/index.esm.js",
"jsdelivr": "dist/index.umd.js",
"umd:main": "dist/index.umd.js",
"exports": {
".": [
{
"import": "./dist/index.mjs",
"require": "./dist/index.cjs",
"default": "./dist/index.js"
},
"./dist/index.js"
]
},
"dependencies": {
"lodash": "^4.17.21"
},
"devDependencies": {
"@rollup/plugin-terser": "^0.2.1",
"@rollup/plugin-typescript": "^10.0.1",
"@types/eslint": "^8.4.10",
"@types/jest": "^29.2.2",
"@types/lodash": "^4.14.188",
"@types/prettier": "^2.7.1",
"@typescript-eslint/eslint-plugin": "^5.47.1",
"@typescript-eslint/parser": "^5.47.1",
"cypress": "^12.2.0",
"eslint": "^8.30.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-cypress": "^2.12.1",
"eslint-plugin-prettier": "^4.2.1",
"http-server": "^14.1.1",
"jest": "^29.3.1",
"jest-environment-jsdom": "^29.3.1",
"prettier": "^2.7.1",
"rollup": "^3.8.1",
"rollup-plugin-tsconfig-paths": "^1.4.0",
"ts-jest": "^29.0.3",
"ts-jest-resolver": "^2.0.0",
"typescript": "^4.9.4",
"webpack-dev-server": "^4.11.1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Guebbit/javascript-library.git"
},
"keywords": [
"Javascript",
"Library"
],
"bugs": {
"url": "https://github.com/Guebbit/javascript-library/issues"
},
"homepage": "https://github.com/Guebbit/javascript-library#readme",
"directories": {
"doc": "docs",
"test": "tests"
}
}