-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 800 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 800 Bytes
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
{
"name": "reach-schema",
"version": "0.2.0",
"esnext": "src/index.ts",
"main": "lib/cjs.js",
"module": "lib/esm.js",
"umd:main": "lib/umd.js",
"typings": "lib/index.d.ts",
"license": "MIT",
"scripts": {
"test": "jest",
"clean": "rimraf ./ib",
"build": "rollup -c rollup.config.js",
"prepublishOnly": "yarn test && yarn build"
},
"devDependencies": {
"@babel/preset-env": "^7.12.10",
"@types/jest": "^26.0.19",
"jest": "^26.6.3",
"rimraf": "^2.6.3",
"rollup": "^2.34.2",
"rollup-plugin-babel": "^4.3.3",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-sourcemaps": "^0.6.3",
"rollup-plugin-typescript2": "^0.29.0",
"ts-jest": "^26.4.4",
"typescript": "^4.1.3"
},
"files": [
"README.md",
"lib"
]
}