-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 836 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 836 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
36
{
"name": "sets-game-engine",
"version": "1.0.5",
"description": "Sets the game engine.",
"main": "dist/npm/index.js",
"module": "dist/esm/index.js",
"type": "module",
"files": [
"dist"
],
"scripts": {
"build:npm": "tsc",
"build:esm": "tsc -p tsconfig.esm.json",
"build": "npm run build:npm && npm run build:esm",
"pretest": "npm run build",
"test": "mocha -r should dist/npm/test/*.js",
"release": "np"
},
"author": {
"name": "Maurice Prosper",
"email": "mothepro@live.com"
},
"license": "Apache-2.0",
"dependencies": {
"fancy-emitter": "2.0.0"
},
"devDependencies": {
"@types/mocha": "^7.0.2",
"@types/node": "^14.0.20",
"@types/should": "^13.0.0",
"mocha": "^8.0.1",
"np": "^6.3.1",
"should": "^13.2.3",
"typescript": "^3.9.6"
}
}