-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
128 lines (128 loc) · 4.46 KB
/
Copy pathpackage.json
File metadata and controls
128 lines (128 loc) · 4.46 KB
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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
{
"name": "nq-cache",
"version": "0.0.3",
"description": "function cache",
"main": "lib/index.js",
"types": "src/index.d.ts",
"web": "dist/cache.js",
"module": "es/index.js",
"jsnext:main": "es/index.js",
"files": [
"src",
"lib",
"dist",
"es"
],
"author": "nianqin <nianqin.vip@gmail.com> (https://github.com/nqdy666/)",
"contributors": [
{
"name": "nianqin",
"url": "https://github.com/nqdy666"
}
],
"bugs": {
"url": "https://github.com/nqdy666/nq-cache/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nqdy666/nq-cache.git"
},
"license": "MIT",
"scripts": {
"test:unit": "jest --no-cache",
"test:e2e": "npm run build && node test/e2e/runner.js",
"test:e2e:sauce": "npm run test:e2e -- --env chrome,firefox,ie11,ie10,ie9,ie8,edge,safari,iphone6,android4.4",
"test": "npm run test:unit && npm run test:e2e -- --env chrome",
"example": "serve",
"flow": "flow",
"prelint": "npm run flow",
"lint": "eslint ./src",
"doc": "esdoc",
"prebuild": "npm run lint && npm run compile",
"build": "cross-env NODE-ENV=production && rollup -c",
"compile": "npm run compile:cjs && npm run compile:es",
"log": "conventional-changelog -p eslint -i CHANGELOG.md -s -r 0 && git add CHANGELOG.md && git commit -m \"Update CHANGELOG.md\"",
"compile:cjs": "cross-env NODE-ENV=production && babel src -d lib --no-babelrc --presets=@babel/preset-env,@babel/preset-flow",
"compile:es": "cross-env NODE-ENV=production && babel src -d es --no-babelrc --presets=@babel/preset-flow",
"postversion": "npm run log",
"codecov": "codecov"
},
"dependencies": {
"nd-storage": "^3.0.0"
},
"devDependencies": {
"@babel/cli": "^7.2.3",
"@babel/core": "^7.3.4",
"@babel/plugin-proposal-class-properties": "^7.0.0",
"@babel/plugin-proposal-decorators": "^7.0.0",
"@babel/plugin-proposal-do-expressions": "^7.0.0",
"@babel/plugin-proposal-export-default-from": "^7.0.0",
"@babel/plugin-proposal-export-namespace-from": "^7.0.0",
"@babel/plugin-proposal-function-bind": "^7.0.0",
"@babel/plugin-proposal-function-sent": "^7.0.0",
"@babel/plugin-proposal-json-strings": "^7.0.0",
"@babel/plugin-proposal-logical-assignment-operators": "^7.0.0",
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.0.0",
"@babel/plugin-proposal-numeric-separator": "^7.0.0",
"@babel/plugin-proposal-optional-chaining": "^7.0.0",
"@babel/plugin-proposal-pipeline-operator": "^7.0.0",
"@babel/plugin-proposal-throw-expressions": "^7.0.0",
"@babel/plugin-syntax-dynamic-import": "^7.0.0",
"@babel/plugin-syntax-import-meta": "^7.0.0",
"@babel/preset-env": "^7.3.4",
"@babel/preset-flow": "^7.0.0",
"babel-core": "^7.0.0-bridge.0",
"babel-eslint": "^8.2.2",
"babel-jest": "^22.4.3",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-preset-env": "^1.7.0",
"chromedriver": "^2.30.1",
"codecov": "^3.0.2",
"conventional-changelog-cli": "^2.0.12",
"cross-env": "^5.1.4",
"cross-spawn": "^6.0.5",
"esdoc": "^1.1.0",
"esdoc-custom-theme": "^1.4.2",
"esdoc-ecmascript-proposal-plugin": "^1.0.0",
"esdoc-flow-type-plugin": "^1.0.1",
"esdoc-inject-style-plugin": "^1.0.0",
"esdoc-publish-html-plugin": "^1.1.2",
"esdoc-publish-markdown-plugin": "^1.1.0",
"esdoc-standard-plugin": "^1.0.0",
"eslint": "^4.19.1",
"eslint-config-standard": "^11.0.0",
"eslint-plugin-flowtype": "^2.46.1",
"eslint-plugin-import": "^2.9.0",
"eslint-plugin-jest": "^21.15.0",
"eslint-plugin-node": "^6.0.1",
"eslint-plugin-promise": "^3.7.0",
"eslint-plugin-standard": "^3.0.1",
"flow-bin": "^0.66.0",
"flow-remove-types": "^1.2.3",
"http-server": "^0.11.1",
"jest": "^24.5.0",
"jest-localstorage-mock": "^2.2.0",
"nightwatch": "^0.9.21",
"nightwatch-helpers": "^1.2.0",
"rollup": "^1.7.0",
"rollup-plugin-alias": "^1.4.0",
"rollup-plugin-babel": "^4.3.2",
"rollup-plugin-commonjs": "^9.1.0",
"rollup-plugin-flow": "^1.1.1",
"rollup-plugin-node-resolve": "^4.0.1",
"rollup-plugin-prettier": "^0.4.0",
"rollup-plugin-replace": "^2.0.0",
"rollup-plugin-uglify": "^6.0.2",
"selenium-server": "^2.53.1",
"serve": "^10.1.2"
},
"browserslist": "last 2 versions, Android >= 4, iOS 10, not IE < 8",
"keywords": [
"cache",
"nq-cache",
"function",
"pure-function",
"memory",
"storage"
]
}