-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
83 lines (83 loc) · 2.17 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
{
"name": "solaire",
"version": "0.8.0",
"description": "The grossly incandescent procedural world generator",
"main": "dist/solaire.js",
"jsnext:main": "dist/solaire.module.js",
"module": "dist/solaire.module.js",
"files": [
"dist",
"src",
"README.md"
],
"keywords": [
"procedural-generation",
"game-development"
],
"scripts": {
"start": "serve -l 8080",
"lint": "eslint --fix src test",
"test": "jest",
"clean": "rimraf build dist",
"build": "rollup --config",
"report-coverage": "codecov",
"release": "standard-version",
"release-dry-run": "standard-version --dry-run"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,json,html,md}": [
"prettier --write",
"git add"
],
"*.js": [
"eslint --fix",
"git add"
]
},
"prettier": {
"printWidth": 100,
"tabWidth": 4
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"dependencies": {
"seedrandom": "^3.0.1"
},
"devDependencies": {
"@babel/core": "^7.10.3",
"@babel/preset-env": "^7.10.3",
"@commitlint/cli": "^7.6.1",
"@commitlint/config-conventional": "^7.6.0",
"acorn": "^6.4.1",
"babel-eslint": "^10.1.0",
"codecov": "^3.6.5",
"eslint": "^6.8.0",
"eslint-plugin-jest": "^22.21.0",
"husky": "^3.0.0",
"jest": "^24.8.0",
"lint-staged": "^9.5.0",
"prettier": "^2.0.5",
"rimraf": "^2.6.3",
"rollup": "^1.32.1",
"rollup-plugin-babel": "^4.4.0",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-node-resolve": "^5.2.0",
"serve": "^11.1.0",
"standard-version": "^6.0.1"
},
"repository": {
"type": "git",
"url": "https://github.com/jsalis/solaire.git"
},
"author": "jsalis <[email protected]>",
"license": "MIT"
}