forked from tfoxy/chrome-promise
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.26 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
39
40
41
42
43
44
45
{
"name": "chrome-promise",
"version": "3.0.2",
"description": "Promises for chrome JavaScript APIs which are used in extensions and apps.",
"main": "index.js",
"types": "index.d.ts",
"scripts": {
"test": "mocha --timeout 10000",
"test:pup": "mocha e2e-pup --timeout 20000",
"watch": "node watch.js",
"compileTypescript": "tsc type-definitions/create-type-definitions.ts --lib es5,es2015,dom",
"createTypeDefinitions": "node type-definitions/create-type-definitions.js node_modules/@types/chrome/index.d.ts > chrome-promise.d.ts"
},
"repository": {
"type": "git",
"url": "https://github.com/tfoxy/chrome-promise"
},
"bugs": {
"url": "https://github.com/tfoxy/chrome-promise/issues"
},
"keywords": [
"chrome",
"ext",
"extension",
"app",
"promise"
],
"devDependencies": {
"@types/chrome": "^0.0.48",
"@types/mocha": "^2.2.41",
"@types/node": "^8.0.20",
"chai": "~3.5.0",
"chai-as-promised": "~5.2.0",
"chai-json-schema": "^1.5.0",
"chokidar": "^1.6.1",
"mocha": "~2.4.5",
"puppeteer": "^1.1.1",
"sinon": "~1.17.3",
"sinon-chrome": "^2.3.2",
"ts-node": "^3.3.0",
"typescript": "^2.4.2"
},
"author": "Tomás Fox <[email protected]>",
"license": "MIT"
}