-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.76 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
{
"author": "Jacob Smith <[email protected]>",
"bugs": {
"url": "https://github.com/JakobJingleheimer/ssr-storage/issues"
},
"dependencies": {
"lodash": "^4.17.10",
"lodash-es": "^4.17.10"
},
"devDependencies": {
"@types/chai": "^4.1.4",
"@types/lodash": "^4.14.110",
"@types/lodash-es": "^4.17.0",
"@types/mocha": "^5.2.3",
"@types/node": "^10.5.0",
"@types/sinon": "^5.0.1",
"@types/sinon-chai": "^3.2.0",
"babel-cli": "^6.26.0",
"babel-plugin-module-resolver": "^3.1.1",
"chai": "^4.1.2",
"http-server": "^0.11.1",
"husky": "^0.14.3",
"mocha": "^5.2.0",
"sinon": "^6.0.1",
"sinon-chai": "^3.2.0",
"ts-node": "^7.0.0",
"tsconfig-paths": "^3.4.2",
"tslint": "^5.10.0",
"tslint-no-unused-expression-chai": "^0.1.3",
"typescript": "^2.9.2"
},
"description": "Cookie and WebStorage polyfill for use in server-side rendering.",
"homepage": "https://github.com/JakobJingleheimer/ssr-storage#readme",
"keywords": [
"Cookies",
"LocalStorage",
"NodeJS",
"SessionStorage",
"TypeScript",
"WebStorage"
],
"license": "MIT",
"main": "lib/cjs/index.js",
"module": "lib/es/index.js",
"name": "ssr-storage",
"repository": "github:JakobJingleheimer/ssr-storage",
"scripts": {
"build": "npm run clean && npm run build:cjs && npm run build:es",
"build:cjs": "tsc --project tsconfig.cjs.json",
"build:es": "tsc --project tsconfig.es.json",
"clean": "rm -rf ./lib/*",
"lint": "tslint --format stylish ./src/**/*",
"precommit": "npm run lint",
"serve": "http-server -e js",
"test": "mocha -r ts-node/register -r tsconfig-paths/register -P tsconfig.cjs.json ./src/**/*.spec.ts"
},
"version": "1.0.0"
}