-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
51 lines (51 loc) · 1.51 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
{
"name": "meml",
"version": "1.0.0-b.13",
"description": "A basic meml interpreter written and tested in typescript",
"main": "./dist/index.js",
"bin": {
"memlc": "./dist/app.js"
},
"repository": "https://github.com/fushra/meml.git",
"author": "TrickyPR <trickypr@icloud.com>",
"contributors": [
{
"name": "Kai Lyons",
"email": "kai@fivnex.co",
"url": "https://github.com/kaitheceo"
}
],
"license": "GPL-3.0-or-later",
"funding": {
"type": "individual",
"url": "https://github.com/sponsors/trickypr"
},
"scripts": {
"test": "nyc --reporter=lcov --reporter=html testyts",
"test:dev": "testyts",
"ast": "ts-node ./scripts/GenerateAst.ts && prettier . --write",
"app": "ts-node ./src/app.ts",
"build": "tsc && echo '#!/usr/bin/env node\n' > tmpfile && cat ./dist/app.js >> tmpfile && mv tmpfile ./dist/app.js",
"docs": "typedoc --tsconfig tsconfig.json",
"examples": "yarn app --file ./css.meml --file ./helloWorld.meml --file newFolder/css.meml --src ./examples --out ./examples",
"prepublishOnly": "yarn build",
"quality": "jscpd src/"
},
"devDependencies": {
"@types/node": "^14.18.35",
"@types/node-fetch": "^2.6.2",
"jscpd": "^3.5.3",
"nyc": "^15.1.0",
"prettier": "^2.8.1",
"testyts": "^1.5.0",
"ts-node": "^10.9.1",
"typedoc": "^0.23.23",
"typescript": "^4.9.4",
"yarn": "^1.22.19"
},
"dependencies": {
"commander": "^7.2.0",
"kleur": "^4.1.5",
"node-fetch": "^2.6.7"
}
}