-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
46 lines (46 loc) · 1.86 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": "streamhub-permalink",
"description": "Livefyre Streamhub Permalink",
"author": "Livefyre <joao@livefyre.com>",
"contributors": {
"name": "Joao Martins",
"email": "joao@livefyre.com"
},
"version": "0.1.0",
"dependencies": {
"bower": "1.2.6",
"cajon": "~0.1.11",
"http-server": "*",
"phantom": "*"
},
"scripts": {
"postinstall": "./node_modules/bower/bin/bower install",
"start": "./node_modules/http-server/bin/http-server .",
"build": "npm run-script clean-build && ./node_modules/requirejs/bin/r.js -o ./tools/build.conf.js && npm run build-css",
"build-css": "npm run build-sdk && npm run copy-dists",
"clean-build": "rm -rf dist",
"hint": "./node_modules/jshint/bin/jshint src/ tests/spec; echo",
"test": "./node_modules/karma/bin/karma start tools/karma.conf.js --singleRun",
"test-ci": "./node_modules/karma/bin/karma start tools/karma.conf.js --singleRun --reporters dots,junit,coverage && npm run send-to-coveralls",
"karma": "./node_modules/karma/bin/karma start tools/karma.conf.js",
"build-version": "node tools/build_version.js",
"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",
"build-sdk": "(cd lib/streamhub-sdk && npm run build)",
"copy-dists": "cp -a lib/streamhub-sdk/dist/ dist/"
},
"devDependencies": {
"jshint": "~2.1.0",
"jsdoc": "git://github.com/jsdoc3/jsdoc.git",
"phantomjs": "~1.9.2-2",
"karma": "~0.10.5",
"karma-chrome-launcher": "~0.1.0",
"karma-coverage": "~0.1.2",
"karma-jasmine": "~0.1.3",
"karma-phantomjs-launcher": "~0.1.0",
"karma-requirejs": "~0.2.0",
"karma-script-launcher": "~0.1.0",
"karma-cajon": "*",
"coveralls": "~2.3.0"
}
}