-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 1.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
{
"name": "pyjamas",
"main": "Pyjamas",
"version": "0.0.2",
"description": "Versioned persistable JavaScript that keeps your code cozy",
"homepage": "https://github.com/mattmaynes/pyjamas-js",
"bugs": {
"url": "https://github.com/mattmaynes/pyjamas-js/issues"
},
"license": "MIT",
"author": "Matthew Maynes <[email protected]>",
"repository": {
"type": "git",
"url": "https://github.com/mattmaynes/pyjamas-js.git"
},
"devDependencies": {
"jsdoc": "*",
"phantomjs": "*",
"jasmine-core": "*",
"karma": "*",
"karma-jasmine": "*",
"karma-coverage": "*",
"karma-coveralls": "*",
"karma-nested-reporter": "*",
"karma-phantomjs-launcher": "*"
},
"scripts": {
"test": "./node_modules/.bin/karma start --signle-run --browsers PhantomJS test/config/pyjamas.conf.js",
"coverage": "cat ./build/reports/coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js",
"make-js": "mkdir -p bin && uglify -s src/*.js -o bin/pyjamas.min.js",
"make-doc": "mkdir -p doc && jsdoc -d doc -r src",
"make": "npm test && npm run make-js && npm run make-doc"
},
"dependencies": {
"karma-cli": "^1.0.1"
}
}