-
Notifications
You must be signed in to change notification settings - Fork 80
/
Copy pathpackage.json
95 lines (95 loc) · 2.76 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
{
"name": "destiny",
"version": "0.7.1",
"description": "Prettier for file structures",
"license": "MIT",
"homepage": "https://github.com/benawad/destiny",
"repository": "github:benawad/destiny",
"bugs": "https://github.com/benawad/destiny/issues",
"keywords": [
"auto",
"fractal",
"cli",
"file",
"prettier",
"structure"
],
"scripts": {
"build": "npm-run-all clean check -p \"build:* -- {@}\" --",
"build:cjs": "rollup -c",
"check": "tsc",
"clean": "rimraf coverage lib",
"format": "run-s format:*",
"format:eslint": "npm run lint -- --fix",
"format:prettier": "prettier --write \"{**/*,*}.{js,json,md,ts,yaml}\"",
"lint": "eslint \"{**/*,*}.{js,ts}\"",
"prepare": "npm run build",
"prepublishOnly": "npm run build",
"start": "nodemon lib/destiny.js",
"test": "jest --colors",
"test:coverage": "npm run test -- --coverage",
"watch": "npm run build -- --watch"
},
"engines": {
"node": ">= 10"
},
"main": "lib/destiny.js",
"bin": {
"destiny": "lib/destiny.js"
},
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.8.4",
"@babel/plugin-transform-runtime": "^7.8.3",
"@babel/preset-env": "^7.8.4",
"@babel/preset-typescript": "^7.8.3",
"@rollup/plugin-commonjs": "^11.0.0",
"@rollup/plugin-json": "^4.0.0",
"@rollup/plugin-node-resolve": "^7.0.0",
"@rollup/plugin-replace": "^2.3.1",
"@semantic-release/changelog": "~5.0.0",
"@semantic-release/git": "~9.0.0",
"@types/fs-extra": "^8.0.1",
"@types/glob": "^7.1.1",
"@types/jest": "^25.1.2",
"@types/mkdirp": "^1.0.0",
"@types/node": "^13.7.0",
"@types/resolve": "^1.14.0",
"@typescript-eslint/eslint-plugin": "^2.19.2",
"@typescript-eslint/parser": "^2.19.2",
"babel-eslint": "^10.1.0",
"babel-jest": "^25.1.0",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.10.0",
"eslint-config-standard": "^14.1.0",
"eslint-plugin-import": "^2.20.1",
"eslint-plugin-node": "^11.0.0",
"eslint-plugin-prettier": "^3.1.2",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"husky": ">=4",
"jest": "^25.1.0",
"lint-staged": ">=10",
"nodemon": "^2.0.2",
"npm-run-all": "^4.1.5",
"prettier": "^1.19.1",
"rimraf": "^3.0.2",
"rollup": "^1.29.0",
"rollup-plugin-add-shebang": "^0.3.0",
"rollup-plugin-babel": "^4.3.0",
"rollup-plugin-terser": "^5.2.0",
"semantic-release": "^17.0.4",
"tree-node-cli": "^1.2.5",
"typescript": "^3.7.5"
},
"dependencies": {
"@babel/runtime": "^7.8.4",
"chalk": "^3.0.0",
"core-js": "^3.6.4",
"cosmiconfig": "^6.0.0",
"fs-extra": "^8.1.0",
"glob": "^7.1.6",
"resolve": "^1.15.1",
"simple-git": "^1.131.0"
}
}