-
Notifications
You must be signed in to change notification settings - Fork 17
/
package.json
43 lines (43 loc) · 1.13 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
{
"name": "nodent",
"version": "3.2.13",
"description": "NoDent - Asynchronous Javascript language extensions",
"main": "nodent.js",
"scripts": {
"cover": "istanbul cover ./nodent.js tests -- --quick --syntax ; open ./coverage/lcov-report/index.html",
"test": "cd tests && npm i --prod && cd .. && node --expose-gc ./nodent.js tests --syntax --quick && node --expose-gc ./nodent.js tests --quick --notStrict",
"test-loader": "cd tests/loader/app && npm test && cd ../../..",
"start": "./nodent.js"
},
"bin": {
"nodentjs": "./nodent.js"
},
"dependencies": {
"nodent-compiler": "^3.2.13",
"nodent-runtime": "^3.2.1",
"resolve": "^1.5.0"
},
"repository": {
"type": "git",
"url": "https://github.com/MatAtBread/nodent.git"
},
"engines": "node >= 0.10.0",
"keywords": [
"Javascript",
"ES7",
"async",
"await",
"language",
"extensions",
"Node",
"callback",
"generator",
"Promise",
"asynchronous"
],
"author": "Mat At Bread <[email protected]>",
"license": "BSD-2-Clause",
"bugs": {
"url": "https://github.com/MatAtBread/nodent/issues"
}
}