-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpackage.json
48 lines (48 loc) · 1.21 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
{
"name": "pryjs",
"version": "1.0.3",
"description": "Pry like ability in javascript.",
"main": "build/pry.js",
"scripts": {
"pretest": "npm run build && cd examples && npm install",
"test": "mocha --recursive --reporter=mocha-pride --compilers coffee:coffee-script/register ./tests && cucumber.js",
"docs:publish": "gh-pages -d docs",
"build": "grunt"
},
"author": "blainesch",
"license": "MIT",
"dependencies": {
"chalk": "^0.5.1",
"coffee-script": "^1.8.0",
"deasync": "~0.1.2",
"pygmentize-bundled": "^2.3.0",
"underscore": "^1.7.0"
},
"devDependencies": {
"chai": "^1.10.0",
"cucumber": "^0.4.7",
"gh-pages": "^0.11.0",
"grunt": "^0.4.5",
"grunt-cli": "^1.2.0",
"grunt-contrib-clean": "^0.6.0",
"grunt-contrib-coffee": "^0.12.0",
"mocha": "^2.3.3",
"mocha-pride": "0.0.2",
"sinon": "^1.12.1"
},
"directories": {
"example": "examples",
"test": "test"
},
"bin": {
"pryjs": "./bin/pryjs"
},
"repository": {
"type": "git",
"url": "https://github.com/blainesch/pry.js.git"
},
"bugs": {
"url": "https://github.com/blainesch/pry.js/issues"
},
"homepage": "https://github.com/blainesch/pry.js"
}