forked from bikeshaving/crank
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.36 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
{
"name": "@bikeshaving/crank",
"version": "0.1.0",
"license": "MIT",
"description": "JSX-based components with functions, promises and generators.",
"files": [
"cjs",
"esm",
"dom.d.ts",
"dom.js",
"html.d.ts",
"html.js"
],
"main": "cjs/index.js",
"module": "esm/index.js",
"types": "esm/index.d.ts",
"scripts": {
"prebuild": "yarn run clean",
"build": "rollup -c rollup.config.js",
"clean": "shx rm -rf ./cjs ./esm",
"lint": "eslint --ext .js,.jsx,.ts,.tsx .",
"prepublishOnly": "yarn run test && yarn run build",
"test": "jest --config jest.config.js --color --no-cache",
"debug": "node --inspect-brk node_modules/.bin/jest --runInBand"
},
"devDependencies": {
"@rollup/plugin-node-resolve": "^7.1.3",
"@types/jest": "^25.2.1",
"@typescript-eslint/eslint-plugin": "^2.28.0",
"@typescript-eslint/parser": "^2.28.0",
"core-js": "^3.6.5",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.10.1",
"eslint-plugin-jest": "^23.8.2",
"eslint-plugin-prettier": "^3.1.3",
"eslint-plugin-react": "^7.19.0",
"event-target-shim": "^5.0.1",
"jest": "^25.3.0",
"prettier": "^2.0.4",
"rollup": "^2.6.1",
"rollup-plugin-typescript2": "^0.27.0",
"shx": "^0.3.2",
"ts-jest": "^25.3.1",
"typescript": "^3.8.3"
},
"publishConfig": {
"access": "public"
}
}