-
Notifications
You must be signed in to change notification settings - Fork 48
/
package.json
84 lines (84 loc) · 2.5 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
{
"name": "sinon-chrome",
"version": "3.0.1",
"description": "Mock of chrome extensions API for unit testing under nodejs",
"homepage": "https://github.com/acvetkov/sinon-chrome",
"author": {
"name": "Aleksey Tsvetkov",
"email": "[email protected]"
},
"contributors": [
{
"name": "Aleksey Tsvetkov",
"email": "[email protected]",
"url": "https://github.com/acvetkov"
},
{
"name": "Vitaly Potapov",
"email": "[email protected]",
"url": "https://github.com/vitalets"
},
{
"name": "Sokratis Vidros",
"email": "[email protected]",
"url": "https://github.com/SokratisVidros"
}
],
"repository": {
"type": "git",
"url": "git://github.com/acvetkov/sinon-chrome.git"
},
"bugs": {
"url": "https://github.com/acvetkov/sinon-chrome/issues"
},
"keywords": [
"chrome",
"firefox",
"extensions",
"apps",
"test",
"tdd",
"webextensions",
"chrome api",
"sinon"
],
"main": "index.js",
"scripts": {
"clean": "rm -rf ./out/",
"lint": "eslint ./src ./test",
"test": "mocha --recursive --compilers js:babel-register --require ./test/setup.js",
"test-navigate": "mocha --compilers js:babel-register examples/navigate.test.js",
"test-events": "mocha --compilers js:babel-register examples/events.test.js",
"test-then": "mocha --compilers js:babel-register examples/then-chrome.test.js",
"transpile": "babel ./src --out-dir ./out",
"build": "npm run clean && npm run transpile && webpack && cp -R ./src/config out/config",
"predeploy": "npm run clean && npm run lint && npm test && npm run build && npm run copy2out",
"bundle": "webpack",
"bundle-dev": "webpack --watch --progress",
"copy2out": "cp ./readme.md ./out/readme.md && cp ./package.json ./out/package.json && cp -R ./dist out/bundle"
},
"license": "ISC",
"dependencies": {
"lodash": "^4.16.3",
"sinon": "^7.2.3",
"urijs": "^1.19.6"
},
"devDependencies": {
"babel-cli": "^6.16.0",
"babel-core": "^6.17.0",
"babel-eslint": "^7.0.0",
"babel-loader": "^6.2.5",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-preset-es2015": "^6.16.0",
"babel-register": "^6.16.3",
"chai": "^3.5.0",
"chai-as-promised": "^6.0.0",
"eslint": "^6.6.0",
"eslint-plugin-import": "^2.0.0",
"json-loader": "^0.5.4",
"mocha": "^3.1.0",
"mocha-lcov-reporter": "^1.2.0",
"mocha-tldr-reporter": "^1.0.0",
"webpack": "^1.13.2"
}
}