This repository has been archived by the owner on Nov 23, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
76 lines (76 loc) · 1.95 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
71
72
73
74
75
76
{
"name": "restencil",
"version": "0.3.1",
"author": "Eric Haynes",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/ehaynes99/restencil.git"
},
"bin": {
"restencil": "bin/restencil"
},
"files": [
"bin",
"src"
],
"engines": {
"node": ">=8.9.0",
"npm": ">=6.0.0"
},
"husky": {
"hooks": {
"pre-commit": "npm run precommit"
}
},
"lint-staged": {
"*.js": [
"eslint",
"git add"
]
},
"scripts": {
"test": "jest test --watch -t",
"test:ci": "CI=true jest test --color",
"lint": "eslint src test",
"precommit": "lint-staged && npm run test:ci",
"start:example": "npm start --prefix ./example-components",
"build:example": "npm run build --prefix ./example-components"
},
"dependencies": {
"@babel/core": "^7.6.4",
"@babel/plugin-syntax-dynamic-import": "^7.2.0",
"@babel/plugin-transform-modules-commonjs": "^7.6.0",
"@babel/register": "^7.6.2",
"chalk": "^2.4.2",
"commander": "^3.0.2",
"fs-extra": "^8.1.0",
"microbundle": "^0.11.0"
},
"devDependencies": {
"@babel/plugin-proposal-object-rest-spread": "^7.6.2",
"@babel/preset-env": "^7.6.3",
"@babel/preset-react": "^7.6.3",
"babel-eslint": "^10.0.2",
"enzyme": "^3.10.0",
"enzyme-adapter-react-16": "^1.15.1",
"eslint": "^5.16.0",
"eslint-config-prettier": "^6.0.0",
"eslint-config-standard": "^13.0.1",
"eslint-config-standard-react": "^8.0.0",
"eslint-import-resolver-node": "^0.3.2",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jest": "^22.14.1",
"eslint-plugin-node": "^9.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-react": "^7.14.3",
"eslint-plugin-react-hooks": "^1.6.1",
"eslint-plugin-standard": "^4.0.0",
"husky": "^3.0.9",
"jest": "^24.9.0",
"lint-staged": "^9.4.2",
"react": "^16.11.0",
"react-dom": "^16.11.0",
"rxjs": "^6.5.3"
}
}