-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
106 lines (106 loc) · 3.65 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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
{
"name": "@o.yilmaz/generatorjs",
"version": "1.0.10",
"description": "Allows you to create and manipulate DOM elements seamlessly in a declarative way.",
"main": "out/cjs/index.js",
"module": "out/mjs/index.js",
"exports": {
".": {
"import": "./out/mjs/index.js",
"require": "./out/cjs/index.js"
}
},
"files": [
"out",
"dist/Generator.min.js",
"README.md",
"LICENSE.md"
],
"directories": {
"example": "examples",
"tests": "tests"
},
"scripts": {
"watch": "rollup -c -w",
"test": "jest",
"test:watch": "jest --watch",
"test:debug": "node --inspect-brk ./node_modules/jest/bin/jest.js --runInBand --watch",
"build:mjs": "tsc -p tsconfig.json && tsc-alias -p tsconfig.json",
"build:cjs": "tsc -p tsconfig-cjs.json && tsc-alias -p tsconfig-cjs.json",
"build:dist": "rollup --config",
"update-types": "./scripts/update-package-types.sh",
"clean": "rm -fr dist/* out/*",
"build": "npm-run-all clean build:* update-types",
"check-types": "tsc",
"prettier": "prettier --ignore-path .gitignore \"**/*.+(ts|js|json)\"",
"format": "npm run prettier -- --write",
"check-format": "npm run prettier -- --list-different",
"lint": "npx eslint -c .eslintrc --ignore-path .eslintignore --ext .js,.ts,.tsx .",
"lint-fix": "npm run lint-check -- --fix",
"validate": "npm-run-all --parallel check-types check-format lint build",
"prepare": "husky install",
"lint-staged": "lint-staged"
},
"repository": {
"type": "git",
"url": "https://github.com/oguz-yilmaz/Generatorjs.git"
},
"keywords": [
"dom",
"element",
"creation",
"create",
"manipulation",
"dynamic"
],
"author": "Oguz Yilmaz <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/oguz-yilmaz/Generatorjs/issues"
},
"homepage": "https://github.com/oguz-yilmaz/Generatorjs#readme",
"devDependencies": {
"@babel/core": "^7.12.7",
"@babel/preset-env": "^7.12.7",
"@babel/preset-typescript": "^7.18.6",
"@rollup/plugin-babel": "^5.3.1",
"@rollup/plugin-commonjs": "^16.0.0",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-node-resolve": "^10.0.0",
"@rollup/plugin-typescript": "^9.0.2",
"@testing-library/dom": "^7.28.1",
"@testing-library/jest-dom": "^5.11.6",
"@testing-library/user-event": "^14.4.3",
"@types/jest": "^29.2.3",
"@types/jquery": "^3.5.14",
"@types/testing-library__jest-dom": "^5.14.5",
"@typescript-eslint/eslint-plugin": "^5.42.0",
"@typescript-eslint/parser": "^5.42.0",
"concurrently": "^5.3.0",
"eslint": "^7.14.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-prettier": "^8.5.0",
"eslint-import-resolver-typescript": "^3.5.2",
"eslint-plugin-import": "^2.22.1",
"husky": "^8.0.0",
"jest": "^29.3.1",
"jest-environment-jsdom": "^29.3.1",
"jquery": "^3.6.2",
"lint-staged": "^13.1.0",
"npm-run-all": "^4.1.5",
"prettier": "^2.7.1",
"rollup": "^2.33.3",
"rollup-plugin-eslint": "^7.0.0",
"rollup-plugin-terser": "^7.0.2",
"ts-jest": "^29.0.3",
"tsc-alias": "^1.8.2",
"typescript": "^4.8.4"
},
"dependencies": {
"@o.yilmaz/taskchain": "^1.0.10",
"core-js": "^3.7.0"
},
"publishConfig": {
"access": "public"
}
}