-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
107 lines (107 loc) · 2.59 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
107
{
"name": "@backtrack/core",
"version": "0.2.1",
"description": "Extendable task runner / file and build manager",
"keywords": [
"build",
"make",
"tool",
"system",
"pipeline",
"configuration",
"config",
"file",
"management",
"manager",
"task",
"runner",
"bootstrap",
"boilerplate",
"generator",
"yeoman",
"yo",
"gulp",
"grunt",
"webpack",
"rollup",
"babel",
"flow",
"typescript",
"prettier",
"eslint",
"jest",
"mocha"
],
"license": "MIT",
"private": false,
"repository": "chrisblossom/backtrack",
"homepage": "https://github.com/chrisblossom/backtrack",
"author": "Chris Blossom",
"engines": {
"node": ">=18.12.0"
},
"files": [
"dist/",
"paths.js"
],
"bin": {
"backtrack": "./dist/cli/cli.js"
},
"main": "dist/core.js",
"module": "commonjs",
"types": "dist/core.d.ts",
"scripts": {
"build": "backtrack build --production",
"build.compile": "cross-env NODE_ENV=production babel src -d dist --extensions .ts --verbose --ignore */**/*.d.ts,**/**/*.test.ts,*/**/__sandbox__/ --source-maps",
"build.types": "cross-env NODE_ENV=production tsc --project tsconfig.types.json",
"check-all": "npm run typescript && npm run lint && npm run test",
"check.all": "backtrack check.all",
"clean": "backtrack clean",
"dev": "backtrack dev --development",
"format": "backtrack format",
"git-pre-commit": "backtrack git-pre-commit",
"git-pre-push": "backtrack git-pre-push",
"lint": "backtrack lint",
"lint.fix": "backtrack lint.fix",
"prepublishOnly": "backtrack prepublishOnly",
"release": "backtrack release",
"test": "backtrack test",
"test.ci": "backtrack test.ci",
"test.ci-pretest": "backtrack test.ci-pretest",
"test.update": "jest --update-snapshot",
"test.watch": "jest --watch --pass-with-no-tests",
"typescript": "backtrack typescript"
},
"devDependencies": {
"@backtrack/core": "^0.2.1",
"@backtrack/preset-node": "^0.11.0",
"@types/dotenv": "^6.1.1",
"@types/fs-extra": "^11.0.4",
"@types/jest": "^29.5.8",
"@types/lodash": "^4.14.201",
"@types/node": "^18.18.9",
"del-cli": "^5.1.0",
"temp-sandbox": "^4.0.1",
"typescript": "^5.2.2"
},
"dependencies": {
"chalk": "^4.1.2",
"core-js": "^3.33.2",
"deep-keys": "^0.5.0",
"del": "^6.1.1",
"dotenv": "^16.3.1",
"ex-config": "^5.0.0",
"execa": "^5.1.1",
"fs-extra": "^11.1.1",
"joi": "^17.11.0",
"lilconfig": "^2.1.0",
"lodash": "^4.17.21",
"parent-module": "^2.0.0",
"read-dir-deep": "^8.0.0",
"read-pkg-up": "^7.0.1",
"resolve-with-prefix": "^4.0.1",
"slash": "^3.0.0",
"sort-keys": "^3.0.0",
"source-map-support": "^0.5.21"
}
}