-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
47 lines (47 loc) · 1.45 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
{
"name": "OhMyCache",
"version": "1.1.1",
"description": "A cache lib based on LocalStorage and SessionStorage without dependencies",
"main": "dist/bundle.js",
"scripts": {
"build": "node build/build.js",
"dev": "node build/dev.js",
"unit": "karma start test/karma.conf.js --single-run || true",
"test": "karma start test/karma.conf.js --single-run || true"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ozee31/ohmycache.git"
},
"author": "Flavien Beninca (ozee31) <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/ozee31/ohmycache/issues"
},
"homepage": "https://github.com/ozee31/ohmycache#readme",
"devDependencies": {
"babel-core": "^6.9.1",
"babel-loader": "^6.2.4",
"babel-preset-es2015": "^6.9.0",
"babel-preset-stage-2": "^6.5.0",
"chokidar": "^1.5.2",
"eslint": "^2.11.1",
"eslint-config-standard": "^5.3.1",
"eslint-friendly-formatter": "^2.0.5",
"eslint-loader": "^1.3.0",
"eslint-plugin-promise": "^1.3.2",
"eslint-plugin-standard": "^1.3.2",
"jasmine": "^2.4.1",
"jasmine-core": "^2.4.1",
"karma": "^0.13.22",
"karma-jasmine": "^1.0.2",
"karma-phantomjs-launcher": "^1.0.0",
"karma-webpack": "^1.7.0",
"ora": "^0.2.3",
"phantomjs-prebuilt": "^2.1.7",
"shelljs": "^0.7.0",
"webpack": "^1.13.1",
"webpack-dev-server": "^1.14.1",
"webpack-hot-middleware": "^2.10.0"
}
}