-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
70 lines (70 loc) · 1.97 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
{
"name": "universal-model-react",
"version": "0.13.2",
"description": "Universal model for React",
"main": "lib/index.js",
"types": "lib/types/index.d.ts",
"files": [
"lib"
],
"scripts": {
"clean": "rimraf ./lib",
"check-types": "tsc --outDir ./lib/types",
"build": "babel ./src --out-dir lib --source-maps --extensions \".ts\", --ignore \"src/tests\",\"src/setupTests.js\"",
"lint": "eslint ./src --ext .ts",
"prebuild": "npm run clean && npm run prettier && npm run lint && npm run check-types && npm run test-coverage",
"prepublishOnly": "npm run build",
"prettier": "prettier --check \"src/**/*.ts\"",
"test-coverage": "jest ./src --coverage"
},
"repository": {
"type": "git",
"url": "https://github.com/universal-model/universal-model-react.git"
},
"keywords": [
"Univeral Model",
"React"
],
"author": "Petri Silen",
"license": "MIT",
"bugs": {
"url": "https://github.com/universal-model/universal-model-react/issues"
},
"homepage": "https://github.com/universal-model/universal-model-react#readme",
"dependencies": {
"@pksilen/reactive-js": "^0.1.2",
"lodash": "^4.17.15"
},
"devDependencies": {
"@babel/cli": "^7.8.0",
"@babel/core": "^7.8.0",
"@babel/plugin-proposal-class-properties": "^7.8.0",
"@babel/preset-env": "^7.8.2",
"@babel/preset-typescript": "^7.8.0",
"@types/estree": "0.0.42",
"@types/jest": "^25.1.2",
"@types/lodash": "^4.14.149",
"@types/node": "^13.7.1",
"@types/react": "^16.9.19",
"@typescript-eslint/eslint-plugin": "^2.15.0",
"@typescript-eslint/parser": "^2.15.0",
"eslint": "^6.8.0",
"jest": "^29.3.1",
"prettier": "^1.19.1",
"react": "^16.12.0",
"rimraf": "^3.0.0",
"typescript": "^3.7.5"
},
"browserslist": [
"last 2 version",
"> 0.2%",
"Firefox ESR",
"not dead"
],
"prettier": {
"arrowParens": "always",
"printWidth": 110,
"tabWidth": 2,
"singleQuote": true
}
}