-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
73 lines (73 loc) · 2.27 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
{
"name": "urlie-api",
"description": "Urlie is a URL shortener service that allows custom domains and slugs. The API part handles short URL generation.",
"keywords": [
"link",
"shortener",
"shorturl",
"url"
],
"dependencies": {
"bases": "^0.2.1",
"bcrypt": "^1.0.2",
"bluebird": "^3.5.0",
"ejs": "2.5.6",
"grunt": "1.0.1",
"grunt-contrib-clean": "1.1.0",
"grunt-contrib-coffee": "1.0.0",
"grunt-contrib-concat": "1.0.1",
"grunt-contrib-copy": "1.0.0",
"grunt-contrib-cssmin": "2.1.0",
"grunt-contrib-jst": "1.0.0",
"grunt-contrib-less": "1.4.1",
"grunt-contrib-uglify": "2.3.0",
"grunt-contrib-watch": "1.0.0",
"grunt-sails-linker": "~1.0.4",
"grunt-sync": "0.6.2",
"include-all": "^4.0.3",
"lodash": "^4.17.4",
"microtime-fast": "^1.0.2",
"passport": "^0.3.2",
"passport-local": "^1.0.0",
"rc": "1.2.1",
"sails": "~0.12.13",
"sails-disk": "~0.10.10",
"sails-redis": "^0.10.7",
"validator": "^7.0.0"
},
"devDependencies": {
"async": "^2.3.0",
"commitizen": "^2.9.6",
"coveralls": "^2.13.0",
"cz-conventional-changelog": "^2.0.0",
"istanbul": "^0.4.5",
"mocha": "^3.2.0",
"mocha-steps": "^1.0.2",
"semantic-release": "^6.3.2",
"should": "^11.2.1",
"supertest": "^3.0.0"
},
"scripts": {
"coverage": "istanbul cover -root ./api -x \"responses/*\" -x \"policies/*\" ./node_modules/mocha/bin/_mocha test/bootstrap.test.js test/integration/**/*.test.js --report lcovonly -- -R spec",
"coveralls": "npm run coverage && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js && rm -rf ./coverage",
"debug": "node debug app.js",
"start": "node app.js",
"semantic-release": "semantic-release pre && npm publish && semantic-release post",
"test": "node ./node_modules/mocha/bin/mocha test/bootstrap.test.js test/integration/**/*.test.js"
},
"main": "app.js",
"repository": {
"type": "git",
"url": "https://github.com/crocodele/urlie-api"
},
"bugs": {
"url": "https://github.com/crocodele/urlie-api/issues"
},
"author": "Viktor Djupsjöbacka <viktor.djupsjobacka@iki.fi>",
"license": "MIT",
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}