-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
63 lines (63 loc) · 1.82 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
{
"name": "crates",
"version": "1.0.0",
"description": "A tool to generate your locale files compatible with i18n.",
"main": "index.js",
"bin": {
"crates": "cli.js"
},
"scripts": {
"test": "jest",
"debug": "node --inspect-brk ./node_modules/jest/bin/jest.js --runInBand",
"lint": "eslint .",
"precommit": "lint-staged"
},
"lint-staged": {
"*.{js,json,md}": ["prettier --write", "git add"]
},
"repository": {
"type": "git",
"url": "git+https://github.com/dleitee/crates.git"
},
"keywords": ["internationalization", "int", "languages", "lang", "translate"],
"author": "Daniel Leite de Oliveira <dleitee@gmail.com> (https://github.com/dleitee)",
"license": "MIT",
"bugs": {
"url": "https://github.com/dleitee/crates/issues"
},
"homepage": "https://github.com/dleitee/crates#readme",
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-eslint": "^8.2.1",
"babel-jest": "^22.2.2",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.6.1",
"babel-preset-stage-0": "^6.24.1",
"eslint": "^4.18.0",
"eslint-config-airbnb-base": "^12.1.0",
"eslint-config-prettier": "^2.9.0",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-prettier": "^2.6.0",
"husky": "^0.14.3",
"jest": "^22.3.0",
"lint-staged": "^6.1.1",
"prettier": "^1.10.2",
"webpack": "^3.11.0"
},
"dependencies": {
"@babel/generator": "^7.0.0-beta.40",
"@babel/parser": "^7.1.3",
"@babel/traverse": "^7.0.0-beta.40",
"@babel/types": "^7.0.0-beta.40",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-react": "^6.24.1",
"babylon": "^6.18.0",
"caporal": "^0.9.0",
"lodash.get": "^4.4.2",
"node-glob": "^1.2.0",
"rimraf": "^2.6.2",
"strman": "^2.0.0",
"strman.format": "^2.0.0"
}
}