-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
80 lines (80 loc) · 2.2 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
79
80
{
"name": "rantjs",
"version": "1.0.6",
"description": "A procedural text generator for JavaScript",
"main": "index.js",
"keywords": [
"rant",
"procedural",
"text",
"generator",
"javascript",
"random",
"text",
"sentences"
],
"homepage": "http://www.robbestad.com/blog/procedurally-generated-text-with-rantjs",
"scripts": {
"test": "./node_modules/.bin/istanbul test ./node_modules/.bin/_mocha -- -R spec --reporter nyan",
"coverage": "NODE_PATH=./source/core ./node_modules/.bin/istanbul cover ./node_modules/.bin/_mocha -- -R spec",
"update:example": "cross-env shjs scripts/buildexample.js",
"publish": "cross-env shjs scripts/npmpublish.js",
"start": "gulp serve"
},
"author": {
"name": "Sven Anders Robbestad",
"email": "anders@robbestad.com",
"url": "http://www.robbestad.com/"
},
"repository": {
"type": "git",
"url": "https://github.com/svenanders/rantjs.git"
},
"license": "ISC",
"dependencies": {
"compression": "^1.2.2",
"express": "^4.10.5",
"gulp": "^3.8.10",
"gulp-inject": "^1.0.2",
"gulp-rename": "^1.2.0",
"gulp-shell": "^0.2.11",
"gulp-sourcemaps": "^1.2.8",
"gulp-uglify": "^1.0.x",
"require-dir": "^0.1.0"
},
"devDependencies": {
"browserify": "^7.1.0",
"compression": "^1.2.1",
"cross-env": "^1.0.8",
"debug": "^2.1.0",
"del": "^1.1.0",
"express": "^4.10.4",
"gulp-autoprefixer": "^2.0.0",
"gulp-browserify": "^0.5.0",
"gulp-concat": "^2.4.2",
"gulp-csso": "^0.2.9",
"gulp-jasmine": "^1.0.1",
"gulp-minify-html": "^0.1.8",
"gulp-mocha": "^2.0.0",
"gulp-nodemon": "^1.0.4",
"gulp-notify": "^2.0.1",
"gulp-sass": "^1.1.0",
"gulp-streamify": "0.0.5",
"gulp-watch": "~1.2.1",
"istanbul": "^0.3.4",
"karma": "^0.12.28",
"karma-firefox-launcher": "^0.1.3",
"karma-mocha": "^0.1.9",
"karma-requirejs": "^0.2.2",
"mocha": "^2.0.1",
"mocha-lcov-reporter": "0.0.1",
"requirejs": "^2.1.15",
"run-sequence": "^1.0.2",
"shelljs": "^0.7.0",
"should": "^4.3.0",
"streamqueue": "^0.1.1",
"tape": "^3.0.3",
"vinyl-source-stream": "^1.0.0",
"vinyl-transform": "^1.0.0"
}
}