Contact
CoCalc Logo Icon
StoreFeaturesDocsShareSupport News AboutSign UpSign In
| Download
Views: 39538
1
{
2
"name": "smc-util",
3
"version": "1.0.0",
4
"description": "CoCalc code shared between the frontend and the backend",
5
"main": "index.js",
6
"scripts": {
7
"test": "SMC_TEST=true node_modules/.bin/mocha --reporter progress test",
8
"coverage": "rm -rf ./coverage/; SMC_TEST=true node_modules/.bin/mocha --require ./coffee-coverage-loader.js && node_modules/.bin/istanbul report text html",
9
"lint": "node_modules/.bin/coffeelint -c *.coffee"
10
},
11
"author": "SageMath, Inc.",
12
"license": "GPL-3.0",
13
"dependencies": {
14
"async": "^1.4.2",
15
"coffee-cache": "^1.0.2",
16
"coffee-register-cache": "0.0.0",
17
"coffee-script": "^1.10.0",
18
"coffeelint": "^1.13.0",
19
"immutable": "^3.7.5",
20
"json-stable-stringify": "^1.0.1",
21
"prop-types": "^15.5.10",
22
"sha1": "^1.1.1",
23
"underscore": "^1.8.3",
24
"uuid": "^3.0.1"
25
},
26
"repository": {
27
"type": "git",
28
"url": "https://github.com/sagemathinc/cocalc"
29
},
30
"devDependencies": {
31
"coffee-coverage": "^0.6.3",
32
"expect": "^1.12.2",
33
"istanbul": "^0.4.0",
34
"mocha": "^2.3.3",
35
"should": "^7.1.1",
36
"should-sinon": "0.0.3",
37
"sinon": "^1.17.2"
38
}
39
}
40
41