-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1.04 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
{
"name": "@neomura/specification",
"description": "specification for neomura virtual retro games console.",
"version": "0.0.0",
"engines": {
"node": ">=14.15.3"
},
"engineStrict": true,
"publishConfig": {
"access": "public"
},
"private": false,
"files": [
"**/*.js",
"**/*.d.ts",
"**/*.md"
],
"repository": {
"type": "git",
"url": "https://github.com/neomura/specification"
},
"license": "MIT",
"devDependencies": {
"@typescript-eslint/eslint-plugin": "4.14.1",
"@typescript-eslint/parser": "4.14.1",
"del-cli": "3.0.1",
"eslint": "7.18.0",
"eslint-config-prettier": "7.2.0",
"eslint-plugin-prettier": "3.3.1",
"npm-run-all": "4.1.5",
"prettier": "2.2.1",
"typescript": "4.1.3"
},
"scripts": {
"buildClean": "del-cli \"**/*.js\" \"**/*.d.ts\" \"!**/node_modules/**/*\"",
"buildLint": "eslint \"**/*.ts\"",
"buildTypeScript": "tsc",
"build": "npm-run-all buildClean buildLint buildTypeScript"
},
"types": "index.d.ts",
"sideEffects": false
}