-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
64 lines (64 loc) · 1.9 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
{
"name": "@travi/netlify-scaffolder",
"description": "host scaffolder for static sites hosted on Netlify",
"license": "MIT",
"version": "0.0.0-semantically-released",
"author": "Matt Travi <[email protected]> (https://matt.travi.org/)",
"repository": "travi/netlify-scaffolder",
"bugs": "https://github.com/travi/netlify-scaffolder/issues",
"homepage": "https://npm.im/@travi/netlify-scaffolder",
"main": "lib/index.cjs.js",
"module": "lib/index.es.js",
"scripts": {
"clean": "rimraf lib/",
"lint:md": "remark . --frail",
"lint:js": "eslint . --cache",
"lint:sensitive": "ban",
"pretest": "run-s build",
"test": "npm-run-all --print-label --parallel lint:* --parallel test:*",
"test:unit:base": "mocha 'src/**/*-test.js'",
"test:unit": "cross-env NODE_ENV=test c8 run-s test:unit:base",
"build": "run-s clean build:*",
"build:js": "rollup -c",
"watch": "run-s 'build:js -- --watch'",
"prepack": "run-s build",
"prepare": "husky install",
"lint:publish": "publint"
},
"files": [
"lib/",
"templates/"
],
"publishConfig": {
"access": "public",
"provenance": true
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"devDependencies": {
"@babel/register": "7.25.9",
"@travi/any": "3.1.2",
"@travi/babel-preset": "3.0.136",
"@travi/eslint-config": "4.0.5",
"@travi/eslint-config-mocha": "1.0.25",
"ban-sensitive-files": "1.10.7",
"c8": "10.1.3",
"chai": "4.5.0",
"commitlint-config-travi": "1.4.54",
"cross-env": "7.0.3",
"cz-conventional-changelog": "3.3.0",
"husky": "9.1.7",
"mocha": "11.0.1",
"npm-run-all2": "7.0.2",
"publint": "0.2.12",
"remark-cli": "12.0.1",
"remark-preset-lint-travi": "6.0.6",
"rimraf": "6.0.1",
"rollup": "4.30.0",
"rollup-plugin-auto-external": "2.0.0",
"sinon": "19.0.2"
}
}