forked from ant-design/ant-design-icons
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
74 lines (74 loc) · 1.98 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
{
"name": "@ant-design/icons-react-native",
"version": "2.3.2",
"main": "./lib/index.js",
"module": "./es/index.js",
"sideEffects": false,
"repository": "https://github.com/ant-design/ant-design-icons/tree/master/packages/icons-react-native",
"contributors": [
"bang88<[email protected]>"
],
"license": "MIT",
"scripts": {
"start": "rc-tools run server",
"lint": "rc-tools run lint",
"prelint": "npm run generate",
"compile": "rc-tools run compile --babel-runtime",
"build": "rc-tools run build",
"dist": "rc-tools run dist",
"test": "jest",
"generate": "node scripts/index.js",
"pregenerate": "npm run clean",
"clean": "rimraf -rf fonts iconfont src/*.tsx",
"prepublishOnly": "npm run lint && npm run test && npm run compile",
"preclean": "npm run patch-package",
"patch-package": "patch-package",
"ci": "npm run lint && npm run test && npm run compile"
},
"files": [
"es",
"lib",
"fonts",
"react-native.config.js"
],
"peerDependencies": {
"react": ">=16.0.0"
},
"devDependencies": {
"@types/jest": "^24.0.17",
"@types/react": "^16.4.12",
"@types/react-dom": "^16.0.6",
"@types/react-native": "^0.57.13",
"@types/react-test-renderer": "^16.0.1",
"cross-env": "^5.2.0",
"jest": "^25.4.0",
"patch-package": "^6.2.2",
"prettier": "^1.15.2",
"rc-tools": "^9.6.1-alpha.1",
"react": "^16.6.3",
"react-dom": "^16.4.2",
"react-test-renderer": "^16.4.2",
"rimraf": "^2.6.2",
"tslint": "^5.11.0",
"tslint-react": "^4.0.0",
"typescript": "^3.0.3",
"webpack-iconfont-plugin-nodejs": "^1.0.17"
},
"jest": {
"setupFiles": [
"<rootDir>/test/setup.js"
],
"transform": {
"\\.tsx?$": "./node_modules/rc-tools/scripts/jestPreprocessor.js"
},
"testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.(jsx?|tsx?)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
]
}
}