-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 1.33 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
{
"name": "typecrypt",
"version": "0.1.0",
"description": "public key crypto library wrapping webcrypto",
"main": "dist/TypeCrypt.js",
"scripts": {
"compile": "tsc",
"dev:compile": "tsc --watch --project tsconfig.test.json",
"dev:serve": "npx browser-sync start --server --startPath test --watch",
"dev": "npm run dev:compile & npm run dev:serve",
"test:compile": "tsc --project tsconfig.test.json",
"test:serve": "npx browser-sync start --server --startPath test",
"test": "npm run test:compile & npm run test:serve",
"coverage:puppeteer": "node test/puppeteerDriver.js",
"coverage:report": "nyc report --reporter=html",
"coverage": "npm run coverage:puppeteer && npm run coverage:report",
"testem": "testem",
"testem:ci": "testem:ci"
},
"author": "",
"license": "ISC",
"devDependencies": {
"@types/chai": "^4.2.6",
"@types/mocha": "^5.2.7",
"browser-sync": "^2.26.7",
"chai": "^4.2.0",
"mocha": "^6.2.2",
"nyc": "^14.1.1",
"puppeteer": "^2.0.0",
"puppeteer-to-istanbul": "^1.2.2",
"testem": "^3.0.2",
"typescript": "^3.7.3"
},
"dependencies": {
"fastestsmallesttextencoderdecoder": "^1.0.8",
"webcrypto-liner": "^1.0.2"
}
}