-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
102 lines (102 loc) · 2.64 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
100
101
102
{
"name": "octicons-modular-monorepo",
"private": true,
"author": "Hien Dao <[email protected]>",
"license": "MIT",
"scripts": {
"bootstrap": "lerna clean --yes && lerna bootstrap --hoist",
"build": "lerna run build --stream",
"lint": "eslint .",
"pretest": "npm run lint",
"test": "jest --runInBand",
"test-ci": "npm test -- --coverage && codecov"
},
"devDependencies": {
"@babel/core": "^7.14.6",
"@babel/node": "^7.14.7",
"@babel/preset-env": "^7.14.7",
"@babel/preset-react": "^7.14.5",
"@rollup/plugin-buble": "^0.21.3",
"@rollup/plugin-commonjs": "^19.0.0",
"@rollup/plugin-node-resolve": "^13.0.0",
"@vue/test-utils": "^1.2.1",
"babel-jest": "^27.0.5",
"codecov": "^3.8.2",
"ejs": "^3.1.6",
"eslint": "^7.29.0",
"eslint-config-standard": "^16.0.3",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-jest": "^24.3.6",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^5.1.0",
"eslint-plugin-standard": "^4.1.0",
"jest": "^27.0.5",
"lerna": "^4.0.0",
"lodash.camelcase": "^4.3.0",
"lodash.mapvalues": "^4.6.0",
"memory-fs": "^0.5.0",
"octicons": "^8.5.0",
"postcss": "^8.3.5",
"postcss-import": "^14.0.2",
"prop-types": "^15.7.2",
"react": "^17.0.2",
"react-test-renderer": "^17.0.2",
"rimraf": "^3.0.2",
"rollup": "^2.52.3",
"rollup-plugin-cleanup": "^3.2.1",
"rollup-plugin-postcss": "^4.0.0",
"rollup-plugin-terser": "^7.0.2",
"vue": "^2.6.14",
"vue-template-compiler": "^2.6.14",
"webpack": "^5.40.0"
},
"homepage": "https://github.com/hiendv/octicons-modular",
"bugs": {
"url": "https://github.com/hiendv/octicons-modular/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/hiendv/octicons-modular.git"
},
"jest": {
"testEnvironment": "jsdom",
"verbose": false,
"collectCoverageFrom": [
"packages/**/lib/**/*.js",
"packages/**/es/**/*.js"
],
"testURL": "http://localhost/"
},
"eslintConfig": {
"env": {
"browser": true,
"node": true,
"jest/globals": true
},
"extends": [
"eslint:recommended",
"plugin:jest/recommended",
"standard"
],
"plugins": [
"jest"
],
"rules": {
"array-bracket-spacing": [
"error",
"always"
],
"jest/no-disabled-tests": "warn",
"jest/no-focused-tests": "error",
"jest/no-identical-title": "error",
"jest/prefer-to-have-length": "warn",
"jest/valid-expect": "error"
}
},
"eslintIgnore": [
"node_modules",
"lib",
"es",
"coverage"
]
}