forked from IceCreamYou/MainLoop.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
29 lines (29 loc) · 1006 Bytes
/
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
{
"name": "MainLoop.js",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"mjs": "cp dist/mainloop.js dist/mainloop.mjs",
"build": "node ./node_modules/typescript/bin/tsc --declaration && npm run mjs",
"build:examples:planets": "cd examples && node ../node_modules/typescript/bin/tsc -p planets",
"build:examples:cli": "cd examples && node ../node_modules/typescript/bin/tsc -p cli && cp cli/cli.js cli/cli.mjs",
"examples:planets": "cd examples && node serve.js",
"examples:cli": "cd examples/cli && node --experimental-modules cli.mjs",
"clean": "rm examples/*/*.{mjs,js}; rm dist/**"
},
"repository": {
"type": "git",
"url": "git+https://github.com/drownbes/MainLoop.js.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/drownbes/MainLoop.js/issues"
},
"homepage": "https://github.com/drownbes/MainLoop.js#readme",
"dependencies": {
"typescript": "^2.6.2"
}
}