-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
92 lines (92 loc) · 3.22 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
{
"name": "@form8ion/gatsby",
"description": "opinionated scaffolder for Gatsby",
"license": "MIT",
"version": "0.0.0-semantically-released",
"author": "Matt Travi <npm@travi.org> (https://matt.travi.org)",
"repository": "form8ion/gatsby",
"bugs": "https://github.com/form8ion/gatsby/issues",
"homepage": "https://npm.im/@form8ion/gatsby",
"runkitExampleFilename": "./example.js",
"main": "lib/index.cjs.js",
"module": "lib/index.es.js",
"sideEffects": false,
"scripts": {
"pretest": "run-s build",
"test": "npm-run-all --print-label --parallel lint:* --parallel test:*",
"lint:lockfile": "lockfile-lint --path package-lock.json --type npm --validate-https --allowed-hosts npm",
"lint:js": "eslint . --cache",
"lint:md": "remark . --frail",
"generate:md": "remark . --output",
"pregenerate:md": "npm run build",
"lint:sensitive": "ban",
"pretest:integration": "preview",
"lint:gherkin": "gherkin-lint",
"test:integration": "run-s 'test:integration:base -- --profile noWip'",
"test:integration:base": "NODE_OPTIONS=--enable-source-maps DEBUG=any cucumber-js test/integration --profile base",
"test:integration:debug": "DEBUG=test run-s test:integration",
"test:integration:wip": "run-s 'test:integration:base -- --profile wip'",
"test:integration:focus": "run-s 'test:integration:base -- --profile focus'",
"clean": "rimraf ./lib",
"prebuild": "run-s clean",
"build": "npm-run-all --print-label --parallel build:*",
"build:js": "rollup --config",
"watch": "run-s 'build:js -- --watch'",
"prepack": "run-s build",
"test:unit": "cross-env NODE_ENV=test c8 run-s test:unit:base",
"test:unit:base": "DEBUG=any mocha 'src/**/*-test.js'",
"lint:peer": "npm ls >/dev/null",
"test:integration:wip:debug": "DEBUG=test run-s 'test:integration:wip'",
"prepare": "husky install",
"lint:publish": "publint"
},
"files": [
"example.js",
"lib/",
"templates/"
],
"publishConfig": {
"access": "public",
"provenance": true
},
"dependencies": {
"@form8ion/cypress-scaffolder": "^3.0.0",
"@form8ion/is-website-vulnerable": "^1.0.0",
"deepmerge": "^4.2.2",
"make-dir": "^4.0.0"
},
"devDependencies": {
"@babel/register": "7.22.15",
"@cucumber/cucumber": "10.0.1",
"@form8ion/babel-preset": "1.6.119",
"@form8ion/commitlint-config": "1.0.65",
"@form8ion/eslint-config": "7.0.7",
"@form8ion/eslint-config-cucumber": "1.4.1",
"@form8ion/eslint-config-mocha": "3.0.1",
"@form8ion/eslint-config-react": "1.16.24",
"@form8ion/remark-lint-preset": "6.0.2",
"@travi/any": "3.0.2",
"babel-plugin-istanbul": "6.1.1",
"ban-sensitive-files": "1.10.1",
"c8": "8.0.1",
"chai": "4.3.10",
"cross-env": "7.0.3",
"cz-conventional-changelog": "3.3.0",
"gherkin-lint": "4.2.2",
"husky": "8.0.3",
"lockfile-lint": "4.12.1",
"mocha": "10.2.0",
"mock-fs": "5.2.0",
"npm-run-all2": "6.1.1",
"package-preview": "4.0.0",
"publint": "0.2.6",
"react": "18.2.0",
"remark-cli": "12.0.0",
"remark-toc": "9.0.0",
"remark-usage": "11.0.1",
"rimraf": "5.0.5",
"rollup": "4.9.0",
"rollup-plugin-auto-external": "2.0.0",
"sinon": "17.0.1"
}
}