-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
36 lines (36 loc) · 1.23 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
{
"name": "@thepalaceproject/webpub-viewer",
"description": "A viewer application for web publications.",
"repository": {
"type": "git",
"url": "git://github.com/ThePalaceProject/webpub-viewer.git"
},
"author": "The Palace Project",
"license": "Apache-2.0",
"main": "dist/src/index.js",
"typings": "dist/src/index.ts",
"scripts": {
"prepublish": "typings install && tsc --p . && tsc --p tsconfig-sw.json && npm run sass",
"test": "rm -rf lib && tsc --p tsconfig-test.json && mocha --require jsdom-global/register --recursive lib/test",
"test-file": "tsc --p tsconfig-test.json && mocha --require jsdom-global/register --recursive",
"test-file-ts": "mocha -r ts-node/register --require src/testHelper.ts",
"clean": "rm -rf typings node_modules lib dist",
"sass": "sass --source-map src/styles/sass/:dist/styles/css/"
},
"dependencies": {
"promise-polyfill": "^6.0.2",
"url-polyfill": "github:webcomponents/URL",
"whatwg-fetch": "^2.0.1"
},
"devDependencies": {
"chai": "^4.3.10",
"jsdom": "9.8.3",
"jsdom-global": "^2.1.0",
"mocha": "^10.2.0",
"requirejs": "^2.3.2",
"sass": "^1.64.2",
"sinon": "^17.0.1",
"typescript": "2.1.1",
"typings": "^2.0.0"
}
}