-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.56 KB
/
Copy pathpackage.json
File metadata and controls
55 lines (55 loc) · 1.56 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
{
"version": "0.0.1",
"private": true,
"homepage": "https://github.com/dog-days/rsf",
"repository": "https://github.com/dog-days/rsf",
"bugs": "https://github.com/dog-days/rsf/issues",
"author": "xianshannan <xianshannan@qq.com>",
"keywords": [
"react",
"framework",
"react-framework",
"rsf"
],
"files": [
"dist",
"lib",
"es",
"src",
"postinstall.js"
],
"devDependencies": {
"@commitlint/cli": "^7.2.1",
"@commitlint/config-conventional": "^7.1.2",
"commitizen": "^3.0.5",
"cz-conventional-changelog": "^2.1.0",
"eslint": "5.6.0",
"eslint-config-react-app": "^3.0.5",
"eslint-plugin-flowtype": "^3.1.4",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jsx-a11y": "^6.1.2",
"eslint-plugin-react": "^7.11.1",
"husky": "^1.1.3",
"jest": "^23.6.0",
"lerna": "^3.4.3",
"lint-staged": "^7.1.0",
"prettier": "^1.13.2"
},
"scripts": {
"test": "lerna run test",
"build": "lerna run build",
"cm": "git-cz",
"postinstall": "node ./postinstall.js",
"bootstrap": "lerna bootstrap --ignore-scripts",
"build-publish": "npm run build && npm run test && lerna publish",
"prettier": "prettier --write './**/*(*.js|*.jsx|*.less|*.css)'",
"rsf-basic": "npm run start --prefix examples/rsf-basic",
"router-code-splitting": "npm run start --prefix examples/router-code-splitting",
"router-basic": "npm run start --prefix examples/router-basic"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}