-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
70 lines (70 loc) · 1.75 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
{
"name": "create-atomic",
"version": "0.0.5",
"type": "module",
"license": "MIT",
"author": "Adrian Cruz",
"description": "An opinionated TypeScript build toolchain for modern node projects and libraries.",
"main": "./build/index.js",
"engines": {
"node": ">= 16.0.0"
},
"scripts": {
"start": "ts-node src/index.ts",
"build": "tsc -p ./tsconfig.json && rm -rf build/templates && rsync -r --exclude=node_modules --exclude=dist --exclude=.next --exclude=.vscode templates build",
"prepublishOnly": "rm -r build && npm run build",
"format": "prettier --write src/**",
"lint": "eslint src/**",
"lint:fix": "eslint src/** --fix",
"test": "jasmine --config=jasmine.json"
},
"bin": {
"create-atomic": "./build/index.js"
},
"files": [
"build"
],
"lint-staged": {
"*.ts": "eslint"
},
"husky": {
"hooks": {
"precommit": "lint-staged && pretty-quick --staged"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/Atomic-stack/create-atomic.git"
},
"bugs": {
"url": "https://github.com/Atomic-stack/create-atomic/issues"
},
"homepage": "https://github.com/Atomic-stack/create-atomic#readme",
"keywords": [
"atomic",
"atomic-stack",
"typescript",
"ecmascript",
"es2019",
"es2020",
"es2021"
],
"devDependencies": {
"@types/ejs": "^3.1.2",
"@types/inquirer": "^9.0.3",
"@types/node": "^18.14.6",
"husky": "^8.0.3",
"jasmine": "^4.4.0",
"jasmine-spec-reporter": "^7.0.0",
"jasmine-ts": "^0.4.0",
"lint-staged": "^13.0.3",
"prettier": "^2.7.1",
"pretty-quick": "^3.1.3",
"ts-node": "^10.9.1",
"typescript": "^4.9.5"
},
"dependencies": {
"ejs": "^3.1.8",
"inquirer": "^9.1.4"
}
}