-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
99 lines (99 loc) · 2.48 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
{
"name": "edam-repo",
"version": "0.3.1",
"description": "The origin of programing: setup scaffold",
"main": "index.js",
"private": true,
"scripts": {
"test": "npm run dist && jest",
"dist": "lerna run --parallel dist",
"dev": "lerna run --parallel dev",
"bootstrap": "lerna bootstrap",
"prerelease": "npm test",
"release": "lerna publish --conventional-commits -m 'chore(release): publish %s'",
"site": "picidae start -c _site/picidae.config.js",
"site:build": "picidae build -f --source-map -c _site/picidae.config.js"
},
"keywords": [
"imcuttle",
"edam"
],
"lint-staged": {
"packages/**/*.{js,jsx}": [
"eslint --fix"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"author": "imcuttle",
"license": "MIT",
"devDependencies": {
"@commitlint/cli": "^11.0.0",
"@commitlint/config-conventional": "^11.0.0",
"@types/jest": "^23.3.7",
"@types/lodash": "^4.14.106",
"@types/node": "^9.4.7",
"babel-eslint": "^8.2.2",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.6.1",
"conventional-changelog-cli": "^1.3.21",
"eslint": "^4.19.0",
"eslint-plugin-typescript": "^0.10.0",
"husky": "^4.3.0",
"jest": "^23.6.0",
"lerna": "^3.22.1",
"lint-staged": "^10.4.2",
"picidae": "^2.2.10",
"picidae-theme-haier": "0.0.8",
"picidae-transformer-file-syntax": "^1.0.0",
"prettier": "^1.14.3",
"rimraf": "^2.6.2",
"ts-jest": "^23.10.4",
"typescript": "^4.2.4",
"typescript-eslint-parser": "^20.0.0"
},
"engines": {
"node": ">=6"
},
"jest": {
"testEnvironment": "node",
"testPathIgnorePatterns": [
".cache"
],
"transform": {
"^.+\\.jsx?$": "babel-jest",
"^.+\\.tsx?$": "ts-jest"
},
"testMatch": [
"**/?(*.)+(spec|test).{t,j}s?(x)"
],
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
]
},
"dependencies": {
"tildify": "^1.2.0"
},
"repository": "imcuttle/edam",
"bugs": {
"url": "https://github.com/imcuttle/edam/issues"
},
"homepage": "https://github.com/imcuttle/edam#readme"
}