-
-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
46 lines (46 loc) · 1.13 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
{
"name": "chrome-storage-promise",
"version": "0.1.0",
"description": "A chrome.storage API wrapper that is using promise",
"scripts": {
"build": "gulp build",
"test": "karma start",
"test-ci": "karma start --single-run"
},
"keywords": [
"chrome",
"extension",
"storage",
"promise"
],
"repository": {
"type": "git",
"url": "git://github.com/akiomik/chrome-storage-promise.git"
},
"bugs": {
"url": "https://github.com/akiomik/chrome-storage-promise/issues"
},
"author": {
"name": "Akiomi Kamakura",
"email": "[email protected]",
"url": "https://github.com/akiomik"
},
"main": "dist/chrome-storage-promise.js",
"readmeFilename": "README.md",
"license": "MIT",
"devDependencies": {
"gulp": "~3.8.11",
"gulp-webpack": "~1.4.0",
"babel-loader": "~5.1.2",
"gulp-uglify": "~1.2.0",
"gulp-load-plugins": "~0.10.0",
"karma": "~0.12.32",
"mocha": "~2.2.5",
"karma-mocha": "~0.1.10",
"karma-chrome-launcher": "~0.1.12",
"node-libs-browser": "~0.5.0",
"webpack": "~1.9.7",
"karma-webpack": "~1.5.1",
"karma-sinon-chai": "~0.3.0"
}
}