forked from Joao-S-Martins/streamhub-input
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
72 lines (72 loc) · 2.74 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
{
"name": "streamhub-input",
"description": "Livefyre Streamhub Input",
"author": "Livefyre <dev@livefyre.com>",
"contributors": {
"name": "Livefyre",
"email": "dev@livefyre.com"
},
"version": "0.12.1",
"scripts": {
"postinstall": "bower install",
"start": "node ./dev/server.js",
"build": "npm run-script clean-build && npm run-script build-non-min && ./node_modules/requirejs/bin/r.js -o ./tools/build.conf.js && npm run-script fonts",
"build-non-min": "./node_modules/requirejs/bin/r.js -o ./tools/build.conf.js optimize=none out=./dist/streamhub-input.js",
"build-css": "mkdir -p dist && ./node_modules/less/bin/lessc --include-path=lib/ --clean-css src/styles/streamhub-input.less dist/streamhub-input.min.css",
"clean-build": "rm -rf dist && mkdir -p dist",
"lint": "./node_modules/.bin/lfeslint",
"test": "npm run-script build && ./node_modules/karma/bin/karma start tests/karma.conf.js --singleRun --reporters dots",
"testw": "./node_modules/karma/bin/karma start tests/karma.conf.js",
"test-ci": "./node_modules/karma/bin/karma start tests/karma.conf.js --singleRun --reporters dots,junit,coverage && npm run send-to-coveralls",
"karma": "./node_modules/karma/bin/karma start tests/karma.conf.js",
"fonts": "cp -rf ./lib/livefyre-bootstrap/src/fonts dist/fonts",
"jsdoc": "rm -rf docs/api && ./node_modules/jsdoc/jsdoc README.md -c tools/jsdoc.conf.json",
"send-to-coveralls": "find coverage -name 'lcov.info' -print0 | xargs -0 cat | ./node_modules/coveralls/bin/coveralls.js"
},
"devDependencies": {
"bower": "~1.3.3",
"cajon": "0.1.11",
"coveralls": "~2.3.0",
"csso": "^1.3.11",
"express": "4.0.0",
"http-server": "*",
"ink-docstrap": "git://github.com/michaelward82/docstrap.git#line-number-alignment",
"jsdoc": "3.6.3",
"karma": "0.10.5",
"karma-cajon": "*",
"karma-chrome-launcher": "0.1.0",
"karma-coffee-preprocessor": "0.1.0",
"karma-coverage": "0.1.2",
"karma-firefox-launcher": "0.1.0",
"karma-html2js-preprocessor": "0.1.0",
"karma-jasmine": "0.1.3",
"karma-junit-reporter": "0.1.0",
"karma-phantomjs-launcher": "0.1.0",
"karma-requirejs": "0.2.0",
"karma-script-launcher": "0.1.0",
"less": "1.7.0",
"less-middleware": "0.1.15",
"lfcdn": "git+ssh://git@github.com:Livefyre/lfcdn",
"lfeslint": "git+ssh://git@github.com/Livefyre/lfeslint.git",
"phantomjs": "1.9.19",
"requirejs": "2.1.9",
"rework": "git://github.com/gobengo/rework"
},
"lfeslint": {
"ignore": [
"lib/**",
"tools/build.conf.js"
],
"global": [
"requirejs",
"Livefyre",
"jasmine",
"expect",
"spyOn",
"sandbox",
"runs",
"waitsFor",
"define"
]
}
}