-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
68 lines (68 loc) · 1.74 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
{
"name": "example-component",
"version": "1.0.0",
"description": "intro component",
"files": [
"demo/",
"es/",
"lib/",
"build/"
],
"main": "lib/index.js",
"module": "es/index.js",
"sideEffects": [
"dist/*",
"*.scss",
"*.less",
"*.css"
],
"scripts": {
"start": "build-scripts start",
"build": "build-scripts build",
"test": "build-scripts test",
"prepublishOnly": "npm run build",
"eslint": "eslint --cache --ext .js,.jsx,.ts,.tsx ./",
"eslint:fix": "npm run eslint -- --fix",
"stylelint": "stylelint \"**/*.{css,scss,less}\"",
"lint": "npm run eslint && npm run stylelint"
},
"keywords": [
"ice",
"react",
"component"
],
"dependencies": {
"prop-types": "^15.5.8",
"cool-hooks": "git+https://e.coding.net/frontend-git/frontend/hooks.git",
"wechat-emoji-plus": "^1.0.3"
},
"devDependencies": {
"build-plugin-component": "^1.0.0",
"build-scripts": "^1.1.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"enzyme": "^3.10.0",
"enzyme-adapter-react-16": "^1.14.0",
"@iceworks/spec": "^1.0.0",
"eslint": "^7.0.0",
"stylelint": "^13.7.2",
"@types/react": "^17.0.2",
"@types/react-dom": "^17.0.2",
"wechat-mp-specs": "https://e.coding.net/frontend-git/wechat/wechat-mp-specs.git",
"cool-common-css": "git+https://e.coding.net/frontend-git/frontend/common-css.git",
"driver-universal": "^3.3.1"
},
"peerDependencies": {
"react": "^16 || ^17"
},
"componentConfig": {
"name": "ExampleComponent",
"title": "demo component",
"category": "Others"
},
"publishConfig": {
"access": "public"
},
"license": "MIT",
"homepage": "https://unpkg.com/example-component@1.0.0/build/index.html"
}