forked from NYPL-Simplified/webpub-viewer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
32 lines (32 loc) · 1.04 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
{
"name": "nypl-simplified-webpub-viewer",
"version": "0.0.4",
"author": "NYPL",
"description": "A viewer application for web publications.",
"repository": "https://github.com/NYPL-Simplified/webpub-viewer.git",
"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",
"clean": "rm -rf typings node_modules lib dist",
"sass": "node-sass --source-map true src/styles/sass/ -o dist/styles/css/"
},
"dependencies": {
"promise-polyfill": "^6.0.2",
"url-polyfill": "github:webcomponents/URL",
"whatwg-fetch": "^2.0.1"
},
"devDependencies": {
"chai": "^3.5.0",
"jsdom": "9.8.3",
"jsdom-global": "^2.1.0",
"mocha": "^3.1.2",
"node-sass": "4.5.0",
"requirejs": "^2.3.2",
"sinon": "^1.17.6",
"typescript": "2.1.1",
"typings": "^2.0.0"
}
}