-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
98 lines (98 loc) · 2.38 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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
{
"name": "unreact",
"version": "1.0.0-alpha.0",
"description": "Convert React Components to EJS or Pug",
"main": "build/index.js",
"scripts": {
"build": "babel src -d build -s",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s",
"clean": "del ./build",
"lint": "eslint .",
"precommit": "lint-staged",
"prepublish": "yarn run clean && yarn run build",
"test-ci-partial": "yarn run test-coverage",
"test-ci": "yarn run lint && yarn run test-ci-partial && codecov",
"test-coverage": "yarn run jest --coverage",
"test": "jest"
},
"author": {
"name": "Ramiro Silveyra d'Avila",
"twitter": "ramasilveyra"
},
"license": "MIT",
"engines": {
"node": ">=8"
},
"bin": {
"unreact": "bin/unreact.js"
},
"files": [
"bin",
"build"
],
"repository": "[email protected]:ramasilveyra/unreact.git",
"keywords": [
"ejs",
"pug",
"react",
"convert"
],
"dependencies": {
"@babel/generator": "7.0.0-beta.49",
"@babel/parser": "7.0.0-beta.48",
"@babel/traverse": "7.0.0-beta.49",
"@babel/types": "7.0.0-beta.49",
"chalk": "^2.4.1",
"globby": "^8.0.1",
"html-tags": "^2.0.0",
"lodash": "^4.17.10",
"make-dir": "^1.3.0",
"ora": "^2.1.0",
"resolve-from": "^4.0.0",
"yargs": "^11.0.0"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.3",
"babel-jest": "^23.0.0",
"babel-preset-env": "^1.7.0",
"babel-preset-react": "^6.24.1",
"codecov": "^3.0.2",
"conventional-changelog-cli": "^2.0.0",
"del-cli": "^1.1.0",
"ejs": "^2.6.1",
"eslint": "^4.19.1",
"eslint-config-auth0": "^11.1.0",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-jsx-a11y": "^5.1.1",
"eslint-plugin-react": "^7.1.0",
"html-minifier": "^3.5.16",
"husky": "^0.14.3",
"jest": "^23.0.0",
"js-beautify": "^1.7.5",
"lint-staged": "^7.1.2",
"prettier": "^1.13.0",
"pug": "^2.0.3",
"react": "^16.4.0",
"react-dom": "^16.4.0",
"regenerator-runtime": "^0.11.1"
},
"jest": {
"collectCoverageFrom": [
"src/**/*.js",
"!**/node_modules/**",
"!**/build/**",
"!**/coverage/**"
],
"testEnvironment": "node",
"testMatch": [
"**/*.test.js"
]
},
"lint-staged": {
"*.js": [
"prettier --single-quote --print-width 100 --write",
"git add"
]
}
}