This repository has been archived by the owner on Feb 10, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 14
/
package.json
81 lines (81 loc) · 2.28 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
{
"name": "cookie-storage",
"description": "A Web Storage interface for Cookie",
"version": "6.1.0",
"author": {
"name": "bouzuya",
"email": "m@bouzuya.net",
"url": "http://bouzuya.net"
},
"babel": {
"presets": [
[
"@babel/preset-env",
{
"targets": {
"browsers": "> 0.25%, not dead",
"node": "10"
}
}
],
"power-assert"
]
},
"bugs": {
"url": "https://github.com/bouzuya/cookie-storage/issues"
},
"devDependencies": {
"@babel/cli": "^7.8.3",
"@babel/core": "^7.8.3",
"@babel/preset-env": "^7.8.3",
"@types/node": "^10.17.14",
"@types/power-assert": "^1.5.0",
"@types/proxyquire": "^1.3.28",
"@typescript-eslint/eslint-plugin": "^3.8.0",
"@typescript-eslint/parser": "^3.8.0",
"babel-preset-power-assert": "^3.0.0",
"beater": "^9.0.0",
"beater-helpers": "^2.0.0",
"eslint": "^7.6.0",
"eslint-config-prettier": "^6.11.0",
"npm-run-all": "^4.1.5",
"power-assert": "^1.6.1",
"prettier": "^2.0.5",
"proxyquire": "^2.1.3",
"rimraf": "^3.0.0",
"typescript": "^3.9.7",
"watch": "^1.0.2"
},
"files": [
"lib"
],
"homepage": "https://github.com/bouzuya/cookie-storage",
"keywords": [
"browser",
"cookie",
"storage"
],
"license": "MIT",
"main": "./lib/index.js",
"repository": {
"type": "git",
"url": "https://github.com/bouzuya/cookie-storage.git"
},
"scripts": {
"build": "npm-run-all -s build:format build:lint build:ts build:es2015 build:lib",
"build:es2015": "babel --out-dir \".tmp/es5/\" \".tmp/es2015/\"",
"build:format": "prettier --check '{src,test}/**/*.ts'",
"build:lib": "babel --copy-files --no-comments --out-dir \"lib/\" \".tmp/es2015/src/\"",
"build:lint": "eslint '{src,test}/**/*.ts'",
"build:ts": "tsc",
"clean": "rimraf \".tmp\" \"lib\"",
"format": "prettier --write '{src,test}/**/*.ts'",
"prepare": "npm-run-all -s \"clean\" \"build\"",
"test": "node \".tmp/es5/test\"",
"watch": "npm-run-all -p \"watch:*\"",
"watch:es2015": "npm run \"build:es2015\" -- --watch",
"watch:test": "watch --wait 2 \"npm test\" \".tmp/es5/\"",
"watch:ts": "npm run \"build:ts\" -- --watch"
},
"typings": "./lib/index.d.ts"
}