-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 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
46
47
48
49
{
"name": "esspired",
"version": "0.0.3",
"description": "session storage with an expiration",
"main": "./dist/index.js",
"scripts": {
"prebuild": "npm test",
"build": "./node_modules/.bin/babel src --presets babel-preset-es2015 -d dist",
"test": "./node_modules/.bin/karma start karma.config.js --single-run",
"prepublish": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nilpath/esspired.git"
},
"keywords": [
"session",
"storage",
"expiration",
"ttl",
"cache"
],
"author": {
"name": "Christoffer Ahrling",
"email": "christoffer@nilpath.se",
"url": "http://nilpath.se"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/nilpath/esspired/issues"
},
"homepage": "https://github.com/nilpath/esspired#readme",
"dependencies": {},
"devDependencies": {
"babel-cli": "^6.10.1",
"babel-core": "^6.9.1",
"babel-preset-es2015": "^6.9.0",
"chai": "^3.5.0",
"eslint": "^2.12.0",
"karma": "^0.13.22",
"karma-babel-preprocessor": "^6.0.1",
"karma-chai": "^0.1.0",
"karma-commonjs": "^1.0.0",
"karma-mocha": "^1.0.1",
"karma-phantomjs-launcher": "^1.0.0",
"mocha": "^2.5.3",
"phantomjs-prebuilt": "^2.1.7"
}
}