-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 754 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 754 Bytes
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
{
"name": "tic-bundle",
"description": "Multi-file development in TIC-80",
"author": "Chronocide",
"version": "3.5.3",
"bin": "bin.js",
"main": "bin.js",
"keywords": [
"tic80",
"tic-80",
"fantasy-console",
"javascript"
],
"files": [
"src/**/*.js",
"bin.js"
],
"repository": "https://github.com/chronoDave/tic-bundle.git",
"license": "GPL-3.0",
"scripts": {
"lint": "eslint src",
"test": "npm run lint && tape test/unit/*.test.js"
},
"dependencies": {
"chokidar": "^3.4.0",
"lodash.get": "^4.4.2",
"minimist": "^1.2.5"
},
"devDependencies": {
"eslint": "^7.0.0",
"eslint-config-airbnb-base": "^14.1.0",
"eslint-plugin-import": "^2.22.0",
"tape": "^5.0.1"
}
}