-
Notifications
You must be signed in to change notification settings - Fork 49
/
package.json
81 lines (81 loc) · 1.9 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
{
"name": "@bitsy/hecks",
"description": "a collection of re-usable scripts for bitsy game maker",
"keywords": [
"bitsy",
"hacks"
],
"main": "index.mjs",
"version": "22.1.0",
"bitsyVersion": "8.12",
"scripts": {
"build": "rollup -c --bundleConfigAsCjs",
"test": "jest --runInBand",
"lint": "eslint ./src/**/*.js",
"postversion": "npm run build"
},
"author": "Sean S. LeBlanc <[email protected]>",
"license": "MIT (individual hacks have their own license specified)",
"repository": {
"type": "git",
"url": "git://github.com/seleb/bitsy-hacks.git"
},
"dependencies": {
"@seansleblanc/pink-trombone": "^1.0.1",
"input-gamepads.js": "^3.0.4",
"kitsy": "^1.1.0",
"omggif": "^1.0.10",
"rollup": "^4.2.0",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-node-resolve": "^5.2.0",
"tracery-grammar": "^2.7.4",
"webglazy": "^3.1.2"
},
"devDependencies": {
"@babel/plugin-transform-runtime": "^7.15.0",
"@babel/preset-env": "^7.15.0",
"@babel/runtime": "^7.15.3",
"doctrine": "^3.0.0",
"eslint": "^8.2.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-import": "^2.24.2",
"eslint-plugin-prettier": "^5.0.0",
"jest": "^29.3.1",
"jest-environment-jsdom": "^29.0.1",
"jest-image-snapshot": "^6.0.0",
"lodash.kebabcase": "^4.1.1",
"prettier": "^3.0.0",
"puppeteer": "^22.3.0"
},
"jest": {
"setupFilesAfterEnv": [
"<rootDir>/src/test/setupTests.js"
]
},
"release": {
"branches": [
"+([0-9])?(.{+([0-9]),x}).x",
"main"
],
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
"@semantic-release/changelog",
"@semantic-release/npm",
"@semantic-release/github",
[
"@semantic-release/git",
{
"assets": [
"dist/*.js",
"README.md",
"CHANGELOG.md",
"package.json",
"package-lock.json"
]
}
]
]
}
}