-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
31 lines (31 loc) · 857 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
30
31
{
"name": "evil-playground",
"version": "0.2.0",
"description": "Just a simple Javascript sandboxed environment for playing with toys in.",
"main": "index.js",
"scripts": {
"preversion": "npm test",
"start": "nodemon index.js -q -x 'clear && node'",
"test:watch": "nodemon -q -e js -x 'npm test -s | tap-spec'",
"test": "tape test/*.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/evilsoft/evil-playground.git"
},
"author": "Ian Hofmann-Hicks (evil)",
"license": "ISC",
"bugs": {
"url": "https://github.com/evilsoft/evil-playground/issues"
},
"homepage": "https://github.com/evilsoft/evil-playground#readme",
"dependencies": {
"eslint": "^4.11.0",
"eyes": "^0.1.8",
"nodemon": "^1.12.1"
},
"devDependencies": {
"tap-spec": "^4.1.1",
"tape": "^4.8.0"
}
}