-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.32 KB
/
Copy pathpackage.json
File metadata and controls
61 lines (61 loc) · 1.32 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
56
57
58
59
60
61
{
"name": "fre",
"version": "2.0.0-rc.2",
"description": "",
"main": "dist/fre.js",
"unpkg": "dist/fre.js",
"module": "dist/fre.esm.js",
"exports": {
"./jsx-runtime": {
"main": "./dist/fre.esm.js"
},
"./jsx-dev-runtime": {
"main": "./dist/fre.esm.js"
}
},
"typings": "dist/types/index.d.ts",
"files": [
"src/**/*",
"dist/*.js",
"dist/*.map",
"index.d.ts"
],
"scripts": {
"test": "jest --coverage",
"ref": "jest ./test/ref.test.tsx",
"build": "rollup -c && gzip-size dist/fre.js",
"build:compat": "rollup --config compat/rollup.config.js",
"dev": "rollup -c --watch",
"prepublishOnly": "yarn build"
},
"keywords": [],
"author": "132yse",
"license": "MIT",
"devDependencies": {
"@types/jest": "^24.0.15",
"codecov": "^3.6.1",
"cross-env": "^5.2.0",
"gzip-size-cli": "^3.0.0",
"jest": "^26.4.2",
"rollup": "^2.11.2",
"rollup-plugin-terser": "^5.1.2",
"rollup-plugin-typescript2": "^0.27.0",
"terser": "^4.1.2",
"ts-jest": "^26.1.0",
"typescript": "^4.0.2",
"yarpm": "^0.2.1"
},
"jest": {
"coveragePathIgnorePatterns": [
"<rootDir>/test/test-util.tsx"
],
"transform": {
".(ts|tsx)": "ts-jest"
},
"moduleFileExtensions": [
"js",
"ts",
"tsx"
]
}
}