forked from aantthony/javascript-cas
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 1.64 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
{
"name": "javascript-cas",
"version": "3.0.10",
"author": "Anthony Foster <[email protected]>",
"main": "index.js",
"browserify": "dist/math.js",
"description": "Computer Algebra System",
"contributors": [
"aantthony <[email protected]>"
],
"scripts": {
"test": "[[ -z $TRAVIS_JOB_ID ]] && mocha --recursive || npm run travis",
"travis": "jscoverage lib lib-cov && JSCAS_COVERAGE=1 mocha --recursive -R mocha-lcov-reporter | coveralls && mocha --recursive",
"coverage": "jscoverage lib lib-cov && JSCAS_COVERAGE=1 mocha --recursive -R html-cov > lib-cov/test.html && open lib-cov/test.html",
"start": "node ./bin/javascript-cas",
"predeploy": "grunt",
"postdeploy": "echo This will be run after deploying the app"
},
"homepage": "http://af.id.au/javascript-cas/",
"repository": {
"type": "git",
"url": "git://github.com/aantthony/javascript-cas.git"
},
"keywords": [
"math",
"algebra",
"CAS",
"logic"
],
"license": "MIT",
"engines": {
"node": ">=0.6"
},
"devDependencies": {
"grunt": "~0.4.1",
"jison": "~0.4.2",
"grunt-contrib-uglify": "*",
"grunt-contrib-concat": "*",
"grunt-browserify2": "~0.1.6",
"grunt-contrib-watch": "~0.4.3",
"grunt-contrib-jshint": "~0.4.3",
"mocha": "~1.12.0",
"should": "~1.2.2",
"sinon": "~1.7.3",
"mocha-lcov-reporter": "0.0.1",
"jscoverage": "~0.3.8",
"coveralls": "~2.3.0"
},
"bugs": {
"url": "https://github.com/aantthony/javascript-cas/issues"
},
"bin": {
"javascript-cas": "./bin/javascript-cas.js"
},
"dependencies": {},
"directories": {
"example": "examples",
"test": "test"
}
}