-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
54 lines (54 loc) · 1.68 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
{
"name": "then-chrome",
"version": "1.0.7",
"description": "Promise wrapper for chrome api",
"main": "out/index.js",
"directories": {
"test": "test"
},
"scripts": {
"clean": "rm -rf ./out/ && rm -rf ./coverage/",
"test": "mocha --recursive --compilers js:babel/register --require ./test/setup.js",
"publish-test": "mocha --recursive --compilers js:babel/register --require ./test/setup.js --reporter mocha-tldr-reporter",
"lint": "eslint ./src ./test && jscs ./src ./test",
"build": "npm run transpile",
"transpile": "npm run clean && babel ./src --out-dir ./out",
"prepublish": "npm run lint && npm run publish-test && npm run build",
"coverage": "isparta cover _mocha -- --require babel/register --require ./test/setup.js --recursive -R mocha-lcov-reporter",
"precoveralls": "npm run coverage",
"coveralls": "coveralls < coverage/lcov.info",
"bundle": "webpack"
},
"repository": {
"type": "git",
"url": "git@github.com:acvetkov/then-chrome.git"
},
"keywords": [
"chrome",
"api",
"js",
"promise",
"async"
],
"author": "Aleksey Tsvetkov <aleksey.dmitrich@gmail.com> (https://github.com/acvetkov)",
"license": "ISC",
"devDependencies": {
"babel": "^5.8.29",
"babel-core": "^5.8.34",
"babel-loader": "^5.4.0",
"bluebird": "^3.0.5",
"chai": "^3.4.0",
"chai-as-promised": "^5.1.0",
"coveralls": "^2.11.6",
"eslint": "^1.7.3",
"isparta": "^4.0.0",
"jscs": "^2.2.1",
"lodash": "^3.10.1",
"mocha": "^2.3.3",
"mocha-lcov-reporter": "^1.0.0",
"mocha-tldr-reporter": "^1.0.0",
"sinon": "^1.17.2",
"sinon-chrome": "^2.1.2",
"webpack": "^1.12.10"
}
}