-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1.09 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
{
"name": "Taut",
"version": "1.0.0",
"description": "My submission for the [10k Apart Challenge](https://a-k-apart.com/). A slack clone in 10k of js/html/css that works well in all modern browsers and without clientside javascript.",
"engines": {
"node": ">=6.0"
},
"main": "index.js",
"devDependencies": {
"babel-cli": "^6.11.4",
"babel-preset-es2015": "^6.13.2",
"gulp": "^3.9.1",
"gulp-babel": "^6.1.2",
"gulp-clean-css": "^2.0.12",
"gulp-gzip": "^1.4.0",
"gulp-nodemon": "^2.1.0",
"gulp-replace": "^0.5.4",
"gulp-uglify": "^2.0.0",
"mocha": "^3.0.2",
"should": "^11.1.0",
"supertest": "^2.0.0",
"supertest-session": "^2.0.1",
"escodegen": "^1.8.1",
"esprima": "^3.0.0"
},
"scripts": {
"start": "node dist/index.js",
"build": "gulp build",
"watch": "gulp watch",
"test": "gulp build;rm tests/data.json; mocha tests/;"
},
"repository": {
"type": "git",
"url": "git+https://github.com/maxmcd/taut.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/maxmcd/taut/issues"
},
"homepage": "https://github.com/maxmcd/taut#readme"
}