-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.99 KB
/
Copy pathpackage.json
File metadata and controls
66 lines (66 loc) · 1.99 KB
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
{
"name": "@mm0202/include",
"version": "0.0.1-9",
"description": "",
"license": "MIT",
"main": "lib/index.js",
"typings": "lib/index.d.ts",
"bin": {
"include": "./lib/cli/include/index.js"
},
"directories": {
"lib": "lib",
"test": "__tests__"
},
"files": [
"lib"
],
"scripts": {
"test": "jest --forceExit --detectOpenHandles --passWithNoTests",
"test:watch": "yarn test --watch",
"test:coverage": "jest --coverage --passWithNoTests",
"build": "rimraf dist && tsc",
"watch": "tsc -w",
"lint": "eslint ./**/*.{js,ts,jsx,tsx}",
"lint:fix": "eslint ./**/*.{js,ts,jsx,tsx} --fix",
"include": "include",
"demo:watch:firestore.rules": "include -s src/cli/include/resolveIncludes/__test__/rules/index.rules -w src/cli/include/resolveIncludes/__test__/rules",
"demo:watch:md": "include -s src/cli/include/resolveIncludes/__test__/markdown/root.md -w src/cli/include/resolveIncludes/__test__/markdown",
"version:prerelease": "yarn version --prerelease",
"version:patch": "yarn version --patch",
"version:minor": "yarn version --minor",
"version:major": "yarn version --major",
"preversion": "yarn lint && yarn test",
"prepublishOnly": "yarn build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mm0202-package/include.git"
},
"bugs": {
"url": "https://github.com/mm0202-package/include/issues"
},
"homepage": "https://github.com/mm0202-package/include#readme",
"husky": {
"hooks": {
"pre-push": "yarn lint"
}
},
"dependencies": {
"commander": "^7.2.0"
},
"devDependencies": {
"@types/jest": "^27.0.1",
"@types/node": "^16.6.2",
"@typescript-eslint/eslint-plugin": "^4.29.2",
"@typescript-eslint/parser": "^4.29.2",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^3.4.0",
"husky": "^4.3.8",
"jest": "^27.0.6",
"prettier": "^2.3.2",
"ts-jest": "^27.0.5",
"typescript": "^4.3.5"
}
}