-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
105 lines (105 loc) · 3.68 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
103
104
105
{
"name": "eos-icons-react",
"version": "2.4.0",
"description": "Eos-Icons React npm package",
"main": "./lib/index.js",
"module": "./es/index.js",
"scripts": {
"fetch": "gulp --require ts-node/register/transpile-only",
"script:filled": "TS_NODE_PROJECT=scripts/tsconfig.json node -r ts-node/register scripts/index.ts --target=filled",
"script:outlined": "TS_NODE_PROJECT=scripts/tsconfig.json node -r ts-node/register scripts/index.ts --target=outlined",
"script:animated": "TS_NODE_PROJECT=scripts/tsconfig.json node -r ts-node/register scripts/index.ts --target=animated",
"script:common": "TS_NODE_PROJECT=scripts/tsconfig.json node -r ts-node/register scripts/index.ts --target=common",
"script:stories": "TS_NODE_PROJECT=scripts/tsconfig.json node -r ts-node/register scripts/index.ts --target=stories",
"icon": "mkdir -p src/icon && npm run script:filled && npm run script:animated && npm run script:outlined && npm run script:common",
"build:es": "tsc --project tsconfig.build.json --module esnext --outDir es",
"build:lib": "tsc --project tsconfig.build.json --module commonjs --outDir lib",
"build": "npm run build:es && npm run build:lib",
"generate": "npm run fetch && npm run icon && npm run build",
"test": "jest --env=jsdom",
"storybook:start": "start-storybook -p 6006",
"storybook": "mkdir -p storybook/stories && npm run script:stories",
"build-storybook": "build-storybook -o docs-build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/EOS-uiux-Solutions/eos-icons-react.git"
},
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/EOS-uiux-Solutions/eos-icons-react/issues"
},
"homepage": "https://github.com/EOS-uiux-Solutions/eos-icons-react#readme",
"devDependencies": {
"@babel/core": "^7.14.6",
"@babel/preset-env": "^7.14.7",
"@babel/preset-react": "^7.14.5",
"@semantic-release/commit-analyzer": "^8.0.1",
"@semantic-release/git": "^9.0.0",
"@semantic-release/github": "^7.2.3",
"@semantic-release/npm": "^7.1.3",
"@semantic-release/release-notes-generator": "^9.0.3",
"@storybook/addon-actions": "^6.3.4",
"@storybook/addon-essentials": "^6.3.4",
"@storybook/addon-links": "^6.3.4",
"@storybook/react": "^6.3.4",
"@testing-library/jest-dom": "^5.14.1",
"@testing-library/react": "^12.0.0",
"@types/gulp": "^4.0.8",
"@types/jest": "^26.0.23",
"@types/react": "^17.0.11",
"@typescript-eslint/eslint-plugin": "^4.28.0",
"@typescript-eslint/parser": "^4.28.0",
"babel-jest": "^27.0.5",
"babel-loader": "^8.2.2",
"conventional-changelog-eslint": "^3.0.9",
"del": "^6.0.0",
"eos-icons": "^5.4.0",
"eslint": "^7.29.0",
"eslint-config-standard": "^16.0.3",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^5.1.0",
"gulp": "^4.0.2",
"jest": "^27.0.5",
"jest-dom": "^4.0.0",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-test-renderer": "^17.0.2",
"semantic-release": "^17.4.4",
"ts-jest": "^27.0.3",
"ts-node": "^10.0.0",
"typescript": "^4.3.2"
},
"peerDependencies": {
"react": "^17 || ^18"
},
"release": {
"plugins": [
[
"@semantic-release/commit-analyzer",
{
"preset": "eslint",
"releaseRules": [
{
"tag": "New",
"release": "minor"
}
]
}
],
"@semantic-release/release-notes-generator",
"@semantic-release/npm",
"@semantic-release/git",
"@semantic-release/github"
],
"branches": [
"main"
]
},
"files": [
"es",
"lib"
]
}