-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.48 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
{
"name": "ent-script",
"description": "A javascript Entity Component System",
"version": "0.1.1-beta.7",
"author": {
"name": "Caio Oliveira",
"email": "caio.vsoliveira23@gmail.com"
},
"license": "MIT",
"main": "dist/index.js",
"module": "dist/ent-script.esm.js",
"browser": "dist/ent-script.js",
"typings": "dist/index.d.ts",
"files": [
"dist"
],
"engines": {
"node": ">=12"
},
"scripts": {
"test": "jest --coverage",
"test:watch": "jest --watch",
"test:clear": "rimraf test/coverage",
"lint": "eslint --fix .",
"prebuild": "rimraf dist",
"build": "rollup --config",
"build:clear": "rimraf dist",
"prepub:beta": "standard-version --prerelease beta",
"pub:beta": "yarn publish --access public --tag beta",
"prepub": "standard-version",
"pub": "yarn publish --access public"
},
"husky": {
"hooks": {
"pre-commit": "eslint --fix && jest --only-changed",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"devDependencies": {
"@commitlint/cli": "^11.0.0",
"@commitlint/config-conventional": "^11.0.0",
"@types/jest": "^26.0.15",
"@types/node": "^14.14.2",
"@typescript-eslint/eslint-plugin": "^4.5.0",
"@typescript-eslint/parser": "^4.5.0",
"eslint": "^7.11.0",
"eslint-plugin-jest": "^24.1.0",
"husky": "^4.3.0",
"jest": "^26.6.0",
"rimraf": "^3.0.2",
"rollup": "^2.32.1",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-typescript2": "^0.28.0",
"standard-version": "^9.0.0",
"ts-jest": "^26.4.1",
"typescript": "^4.0.3"
}
}