-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.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
{
"name": "backtalk",
"version": "0.3.0",
"description": "An embeddable scripting language for non-programmers.",
"main": "build/js/lib/index.js",
"scripts": {
"clean": "rm -rf build/",
"prepublish": "gulp dist",
"start": "node build/js/bin/repl.js",
"test": "gulp test",
"watchtests": "NODE_ENV=test `npm bin`/mocha build/js/tests/*.js --reporter dot --watch --require source-map-support/register"
},
"repository": {
"type": "git",
"url": "[email protected]:yourpalal/backtalk.git"
},
"author": "Alex Wilson",
"license": "MIT",
"devDependencies": {
"browserify": "^10.2.3",
"canopy": "^0.3.0",
"gulp": "^3.9.0",
"gulp-concat": "^2.5.2",
"gulp-connect": "^2.2.0",
"gulp-filter": "^3.0.1",
"gulp-jsdoc": "^0.1.4",
"gulp-mocha": "^2.1.3",
"gulp-rename": "^1.2.2",
"gulp-sourcemaps": "^1.6.0",
"gulp-typescript": "^2.10.0",
"gulp-util": "^3.0.5",
"merge2": "^0.3.5",
"mocha": "^2.3.3",
"should": "^4.4.2",
"sinon": "^1.17.1",
"source-map-support": "^0.3.2",
"through2": "^2.0.0",
"vinyl-buffer": "^1.0.0",
"vinyl-source-stream": "^1.1.0"
},
"dependencies": {
"argparser": "^0.2.2",
"promise": "^7.0.4"
},
"typings": "./build/js/lib/index.d.ts"
}