forked from ULL-ESIT-PL-2021/tfa-please
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
55 lines (55 loc) · 2.49 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
52
53
54
55
{
"name": "@ull-esit-pl-2021/please",
"version": "7.2.0",
"description": "A simple programming language built on top of JavaScript",
"main": "src/main.js",
"bin": {
"please": "src/bin/please.js",
"please-run": "src/bin/run.js",
"please-compile": "src/bin/compile.js",
"please-interpret": "src/bin/interpret.js",
"please-repl": "src/bin/repl.js"
},
"scripts": {
"test": "c8 -x **/preface.js --check-coverage --lines 100 --functions 100 --branches 100 --statements 100 mocha --reporter nyan",
"doc": "jsdoc -d docs -c jsdoc.json",
"gen-js": "for i in if if-else println array array-sum method-example array-properties js-methods map sub = currying undefined-sub operation-methods negative-indexes multilevel-assign hash hash-colon sub-in-hash object dot-operator regexp regexp2 for foreach times hello-scope funfun do-with-let-at-end chained-def expressive-assignments if-at-end method-undefined constant-folding ; do src/bin/please.js t -l test/pls/$i.pls -o test/js/$i.jstest && src/bin/please.js t test/pls/$i.pls -o test/cjs/$i.js ; done",
"gen-cpls": "for i in fixing-scope false-if while if if-else println array array-sum method-example array-properties js-methods map sub = currying undefined-sub operation-methods negative-indexes multilevel-assign hash hash-colon sub-in-hash object dot-operator regexp regexp2 for foreach times hello-scope funfun do-with-let-at-end chained-def expressive-assignments if-at-end method-undefined constant-folding constant-propagation ; do src/bin/please.js c test/pls/$i.pls -o test/cpls/$i.cpls ; done",
"gen-tests": "npm run gen-js && npm run gen-cpls"
},
"repository": {
"type": "git",
"url": "github:ull-esit-pl-2021/please-Daniel-del-Castillo"
},
"keywords": [
"PL",
"ULL",
"Programming language"
],
"publishConfig": {
"registry": "https://npm.pkg.github.com",
"access": "restricted"
},
"author": "Daniel del Castillo de la Rosa <[email protected]> (https://github.com/Daniel-del-Castillo)",
"license": "Unlicense",
"devDependencies": {
"@types/mocha": "^8.2.2",
"c8": "^7.7.1",
"chai": "^4.3.4",
"eslint": "^7.23.0",
"eslint-config-google": "^0.14.0",
"jsdoc": "^3.6.6",
"mocha": "^8.3.2",
"sinon": "^10.0.0",
"tui-jsdoc-template": "^1.2.2"
},
"dependencies": {
"@vercel/ncc": "^0.28.5",
"colors": "^1.4.0",
"commander": "^7.2.0",
"estraverse": "^4.3.0",
"js-beautify": "^1.13.13",
"unraw": "^2.0.0",
"xregexp": "^5.0.2"
}
}