-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.27 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.27 KB
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
{
"name": "@calculemus/oli-hammock",
"version": "4.0.3",
"description": "A harness for simplifying custom embedded activity creation in Carnegie Mellon's OLI system",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"dependencies": {
"immutable": "^3.8.2",
"mustache": "^3.0.1"
},
"devDependencies": {
"@types/jquery": "^3.3.22",
"@types/mustache": "^0.8.32",
"prettier": "^1.15.2",
"surge": "^0.20.1",
"typedoc": "^0.13.0",
"typescript": "^3.1.6"
},
"author": "Calculemus LLC",
"scripts": {
"tsc": "tsc -p .",
"pretypedoc": "npm run tsc",
"typedoc": "typedoc --out typedoc --mode file ./src/index.ts",
"presurge": "npm run typedoc",
"surge": "surge -p ./typedoc -d oli-hammock.surge.sh",
"prettier": "prettier --write src/**/*.ts *.json",
"prepublishOnly": "npm run tsc"
},
"repository": {
"type": "git",
"url": "git@github.com:calculemuscode/oli-hammock.git"
},
"license": "CC-BY-SA-4.0",
"bugs": {
"url": "https://github.com/robsimmons/oli-hammock/issues"
},
"homepage": "http://oli-hammock.surge.sh/",
"prettier": {
"printWidth": 110,
"tabWidth": 4
}
}