-
Notifications
You must be signed in to change notification settings - Fork 90
/
package.json
76 lines (76 loc) · 2.08 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
{
"name": "tiny-lr",
"version": "2.0.0",
"description": "Tiny LiveReload server, background-friendly",
"main": "./src",
"scripts": {
"prepublish:": "npm run babel",
"preversion": "npm test",
"postversion": "git push origin master --follow-tags && npm publish",
"test": "npm run eslint && npm run mocha",
"eslint": "eslint . --debug",
"babel": "babel lib/ -d src && babel test/ -d src_test/",
"mocha": "npm run babel && mocha --reporter spec src_test/",
"test-debug": "DEBUG=tinylr:* mocha --reporter list",
"test-debug-all": "DEBUG=* mocha --reporter list",
"post-change": "sh scripts/post-change",
"get-change": "curl http://localhost:35729/changed?files=site.css",
"watch": "npm-watch"
},
"watch": {
"babel": "{lib,test}/**/*.js"
},
"dependencies": {
"body": "^5.1.0",
"debug": "^3.1.0",
"faye-websocket": "^0.11.3",
"livereload-js": "^3.3.1",
"object-assign": "^4.1.0",
"qs": "^6.4.0"
},
"devDependencies": {
"babel-cli": "^6.9.0",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-plugin-transform-regenerator": "^6.9.0",
"babel-preset-es2015": "^6.9.0",
"eslint": "^2.11.1",
"eslint-config-standard": "^5.3.1",
"eslint-plugin-promise": "^1.1.0",
"eslint-plugin-standard": "^1.3.2",
"express": "^4.1.1",
"gaze": "^1.1.2",
"mocha": "^2.3.3",
"npm-watch": "^0.1.6",
"standard-version": "^2.2.1",
"supertest": "^1.2.0"
},
"author": "mklabs",
"homepage": "https://github.com/mklabs/tiny-lr",
"bugs": "https://github.com/mklabs/tiny-lr/issues",
"repository": {
"type": "git",
"url": "git://github.com/mklabs/tiny-lr.git"
},
"config": {
"test_port": "9001"
},
"license": "MIT",
"contributors": [
{
"name": "Kyle Robinson Young",
"url": "https://github.com/shama"
},
{
"name": "Jordan Hawker",
"url": "https://github.com/elwayman02"
},
{
"name": "Hemanth.hm",
"url": "https://github.com/hemanth"
},
{
"name": "Mickael Daniel",
"url": "https://github.com/mklabs"
}
]
}