-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
78 lines (78 loc) · 2.09 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
{
"name": "@niksy/generator-paleta",
"version": "9.0.3",
"description": "Yeoman generator for my projects.",
"license": "MIT",
"author": "Ivan Nikolić <[email protected]> (http://ivannikolic.com)",
"sideEffects": false,
"type": "module",
"exports": {
".": {
"import": "./generators/app/index.js"
},
"./package.json": "./package.json"
},
"main": "generators/app/index.js",
"module": "generators/app/index.js",
"directories": {
"test": "test"
},
"files": [
"generators/",
"LICENSE.md",
"README.md"
],
"scripts": {
"lint": "eslint '{generators/app/index,test/index}.js'",
"prepare": "if [[ -x \"$(command -v husky)\" ]]; then husky; fi",
"prerelease": "npm run lint",
"release": "np --no-release-draft",
"test": "NODE_OPTIONS='--experimental-loader=@istanbuljs/esm-loader-hook --no-warnings' nyc mocha 'test/**/*.js' && nyc check-coverage",
"test:watch": "nodemon --exec npm test"
},
"dependencies": {
"browserslist": "^4.14.6",
"is-github-url": "^1.2.2",
"is-scoped": "^3.0.0",
"lodash": "^4.17.21",
"parse-github-url": "^1.0.2",
"path-exists": "^5.0.0",
"sort-package-json": "^2.8.0",
"yeoman-generator": "^7.1.1"
},
"devDependencies": {
"@istanbuljs/esm-loader-hook": "^0.2.0",
"eslint": "^8.5.0",
"eslint-config-nitpick": "^13.0.1",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"husky": "^9.0.11",
"lint-staged": "^15.2.2",
"mocha": "^10.3.0",
"nodemon": "^3.1.0",
"np": "^10.0.2",
"nyc": "^15.1.0",
"prettier": "^3.2.5",
"write-json-file": "^5.0.0",
"yeoman-assert": "^3.1.1",
"yeoman-environment": "^4.4.0",
"yeoman-test": "^8.2.0"
},
"engines": {
"node": ">=18"
},
"publishConfig": {
"access": "public"
},
"keywords": [
"yeoman-generator"
],
"repository": {
"type": "git",
"url": "git+https://github.com/niksy/generator-paleta.git"
},
"bugs": {
"url": "https://github.com/niksy/generator-paleta/issues"
},
"homepage": "https://github.com/niksy/generator-paleta#readme"
}