-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.94 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.94 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
{
"name": "@firefox-pro-coding/react-composition-api",
"description": "Writing react component with composition api",
"version": "1.0.0",
"main": "lib/index.js",
"module": "lib/index.js",
"typings": "lib/index.d.ts",
"author": "noe132 <nnnnoe132@gmail.com>",
"license": "MIT",
"sideEffects": false,
"scripts": {
"build": "rimraf dist && yarn tsc && yarn tsc -p tsconfig_babel.json",
"test:build": "yarn tsc -p ./test/tsconfig.json",
"test": "jest --collect-coverage",
"test:debug": "node --inspect-brk ./node_modules/jest/bin/jest.js --runInBand",
"prepare": "yarn build",
"cov": "codecov -f ./coverage/lcov.info",
"lint": "eslint --ext \"js,jsx,ts,tsx\" ./src/"
},
"dependencies": {},
"devDependencies": {
"@babel/cli": "^7.12.1",
"@babel/core": "^7.12.3",
"@babel/preset-typescript": "^7.12.1",
"@testing-library/react": "^11.1.0",
"@types/jest": "^26.0.15",
"@types/node": "^14.14.2",
"@types/react": "^16.9.53",
"@types/react-test-renderer": "^16.9.3",
"@typescript-eslint/eslint-plugin": "^4.5.0",
"@typescript-eslint/parser": "^4.5.0",
"babel-eslint": "^10.1.0",
"confusing-browser-globals": "^1.0.9",
"eslint": "^7.11.0",
"eslint-import-resolver-typescript": "^2.3.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsdoc": "^30.7.3",
"eslint-plugin-react": "^7.21.5",
"eslint-plugin-react-hooks": "^4.2.0",
"jest": "^26.6.0",
"mobx": "^6.0.1",
"mobx-react-lite": "^3.0.1",
"react": "^17.0.0",
"react-dom": "^17.0.0",
"react-test-renderer": "^17.0.0",
"rimraf": "^3.0.2",
"ts-jest": "^26.4.1",
"typescript": "^4.0.3"
},
"repository": {
"type": "git",
"url": "https://github.com/Firefox-Pro-Coding/react-composition-api"
},
"bugs": {
"url": "https://github.com/Firefox-Pro-Coding/react-composition-api/issues"
},
"homepage": "https://github.com/Firefox-Pro-Coding/react-composition-api"
}