forked from basketry/rails
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 1.71 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
{
"name": "@basketry/rails",
"version": "0.0.6",
"description": "Basketry generator for generating Rails routers and controllers",
"main": "./lib/index.js",
"scripts": {
"test": "jest",
"clean": "run-s -s clean:*",
"create-snapshot": "ts-node ./src/snapshot/create-snapshot.ts",
"lint": "run-s -s lint:*",
"fix": "run-s -s fix:*",
"clean:output": "rimraf lib",
"start": "node ./lib/index.js",
"prebuild": "run-s -s clean lint",
"build": "tsc",
"lint:eslint": "eslint src/**/*.*",
"fix:eslint": "eslint --fix src/**/*.*",
"lint:prettier": "prettier -c .",
"fix:prettier": "prettier -w .",
"clean:coverage": "rimraf coverage",
"pretest": "run-s -s clean",
"prepack": "run-s -s build",
"prepare": "npm run build"
},
"keywords": [],
"author": "Steve Konves",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/basketry/rails.git"
},
"bugs": {
"url": "https://github.com/basketry/rails/issues"
},
"homepage": "https://github.com/basketry/rails#readme",
"devDependencies": {
"@types/jest": "^27.4.0",
"@types/node": "^17.0.10",
"@types/pluralize": "^0.0.29",
"@typescript-eslint/eslint-plugin": "^5.8.1",
"@typescript-eslint/parser": "^5.8.1",
"eslint": "^8.5.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.25.3",
"jest": "^27.4.7",
"npm-run-all": "^4.1.5",
"rimraf": "^3.0.2",
"ts-jest": "^27.1.3",
"ts-node": "^10.4.0",
"typescript": "^4.5.5"
},
"dependencies": {
"@basketry/sorbet": "github:justworkshr/basketry-sorbet",
"basketry": "^0.0.25",
"case": "^1.6.3",
"pluralize": "^8.0.0",
"prettier": "^2.5.1"
}
}