-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
60 lines (60 loc) · 1.32 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
{
"name": "ogamejs",
"version": "2.1.6",
"description": "",
"main": "build/index.js",
"scripts": {
"start": "babel-node index.js",
"commit": "git-cz",
"build": "babel src -d build",
"lint": "eslint .",
"test": "jest"
},
"files": [
"build"
],
"repository": {
"type": "git",
"url": "https://github.com/rolljee/ogamejs.git"
},
"keywords": [
"ogame",
"calculator",
"resources",
"javascript"
],
"author": "n.riquelmebareiro@gmail.com",
"license": "MIT",
"jest": {
"transform": {
"^.+\\.jsx?$": "babel-jest"
}
},
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.9.0",
"@babel/node": "^7.8.7",
"@babel/preset-env": "^7.9.5",
"babel-core": "^7.0.0-bridge.0",
"babel-jest": "^25.3.0",
"cz-conventional-changelog": "^3.1.0",
"eslint": "^6.8.0",
"eslint-config-airbnb": "^18.1.0",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-react": "^7.19.0",
"eslint-plugin-security": "^1.4.0",
"git-cz": "^4.3.1",
"jest": "^25.3.0",
"regenerator-runtime": "^0.13.5",
"standard-version": "^8.0.1"
},
"dependencies": {
"lodash": "^4.17.15"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}