-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.06 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
{
"name": "@scramjet/create-sequence",
"version": "1.0.0",
"--todo--description": "Create `esm` enabled packages.",
"--todo--keywords": [
"commonjs",
"ecmascript",
"export",
"import",
"modules",
"node",
"require"
],
"repository": "scramjetorg/create-sequence",
"license": "MIT",
"author": "Scramjet <[email protected]>",
"authors": [
"Scramjet <[email protected]>",
"John-David Dalton <[email protected]>"
],
"bin": "create-sequence.js",
"private": true,
"engines": {
"node": ">=14"
},
"scripts": {
"start": "node ./create-sequence",
"precommit": "npm run lint",
"clean": "node script/clean.js",
"lint": "eslint '**/*.js' --fix --quiet",
"test": "echo \"Error: no test specified\" && exit 1"
},
"dependencies": {
"fs-extra": "^11.1.1",
"init-package-json": "^5.0.0"
},
"devDependencies": {
"eslint": "^8.43.0",
"eslint-plugin-import": "~2.27.5",
"eslint-plugin-node": "^11.1.0"
},
"files": [
"create-sequence",
"templates/**/*"
]
}