forked from ELLIOTTCABLE/Pratchett.js
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
78 lines (64 loc) · 3.26 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
{ "author" : "ELLIOTTCABLE (http://ell.io/tt)"
, "name" : "Paws.js"
, "private" : true
, "version" : "5.0.0"
, "version-name" : "nordic paws"
, "spec-name" : "Paws' Nucleus 10 (ish.)"
, "main" : "Library/Paws.js"
, "bin" : {"paws.js" : "Executables/paws.js"}
, "scripts" :{
"prepublish" : "./Scripts/build.sh"
, "repl" : "./Scripts/repl.js"
, "test" : "./Scripts/test.sh"
, "clean" : "./Scripts/clean.sh"
, "coverage" : "./Scripts/coverage.sh 3> ./Library/Coverage.html"
, "coveralls" : "./Scripts/coveralls.sh"
, "install-git-hooks" :
"./Scripts/install-git-hooks.sh"
}
, "config" :{
"dirs" :{"source" : "Source"
, "test" : "Test"
, "rulebook" : "Test/Rulebook"
, "integration": "Test/Integration"
, "instrumentation"
: "Source" }
, "mocha" :{"ui" : "bdd"
, "reporter" : "spec" }
, "git" :{"hooks" : "prepare-commit-msg pre-commit post-merge post-checkout" }
}
, "engines" :{"node":"~0.10.7"}
, "dependencies" :{"coffee-script" : "~1.9.1"
, "node-uuid" : "~1.4.3"
, "pegjs" : "~0.8.0"
, "minimist" : "~1.1.1"
, "mustache" : "~2.0.0"
, "blessed" : "~0.0.51"
, "pretty-error" : "~1.1.2"
, "bluebird" : "~2.9.24"
, "lodash-compat" : "~3.6.0" }
, "devDependencies" :{"glob" : "~5.0.3"
, "browserify" : "~3.33.0"
, "coffeeify" : "~0.6.0"
, "docco" : "~0.7.0"
, "mocha" : "~2.2.1"
, "mocha-lcov-reporter" : "~0.0.2"
, "expect.js" : "~0.3.1"
, "sinon" : "~1.14.1"
, "sinon-expect" : "~0.2.0"
, "coffee-coverage" : "~0.4.5"
, "coveralls" : "~2.11.2"
, "taper" : "~0.5.0"
, "yamljs" : "~0.2.1" }
, "testling" :{
"files" : "Test/*.coffee"
, "html" : "Library/TAP.html"
, "preprocess" : "cake --tests compile:client"
, "browsers" :{"ie": [ 6, 7, 8, 9, 10 ]
, "firefox": [ 3, 3.5, 3.6, 4, 5, 10, 19, "nightly" ]
, "chrome": [ 4, 5, 6, 7, 10, 15, 25, "canary" ]
, "safari": [ 4.0, "5.0.5", 5.1, 6.0 ]
, "opera": [ 10.0, 10.5, 11.0, 11.5, 11.6, 12.0, "next" ]
, "iphone": [ 6.0 ]
, "ipad": [ 6.0 ]
, "android-browser": [ 4.2 ] }}}