-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpackage.json
38 lines (38 loc) · 1.02 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
{
"name": "nel",
"version": "1.3.0",
"description": "Node.js Evaluation Loop (NEL): module to run a Node.js REPL session",
"keywords": [
"javascript",
"Node.js",
"REPL",
"session",
"vm",
"ijavascript",
"jp-babel",
"jp-coffeescript"
],
"author": {
"author": "Nicolas Riesco",
"email": "[email protected]",
"url": "http://www.nicolasriesco.net/"
},
"repository": {
"type": "git",
"url": "https://github.com/n-riesco/nel.git"
},
"license": "BSD-3-Clause",
"devDependencies": {
"debug": "2",
"eslint": "2",
"jasmine": "2",
"jsdoc": "3"
},
"scripts": {
"doc": "jsdoc -R README.md -d doc index.js lib",
"doc:publish": "node scripts/doc-publish.js doc https://github.com/n-riesco/nel",
"lint": "eslint index.js lib test",
"test:jasmine": "jasmine test",
"test": "npm run lint && npm run test:jasmine"
}
}