-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.32 KB
/
Copy pathpackage.json
File metadata and controls
56 lines (56 loc) · 1.32 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
{
"name": "@o2v/a-cache",
"version": "0.1.0-beta.1",
"description": "a tool for cache and discache of the result of a call. ",
"main": "lib/index.js",
"module": "lib/index.esm.js",
"unkpg": "lib/index.umd.js",
"typings": "typings/index.d.ts",
"files": [
"lib",
"typings"
],
"scripts": {
"test": "npm run dist:dev && ava",
"dist:tsc": "rimraf typings tsc-out lib && tsc",
"dist": "npm run dist:tsc && SET NODE_ENV=production&& rollup -c ./rollup.config.js",
"publish2npm": "npm run test && npm run dist && npm publish --access=public"
},
"author": "herbluo",
"license": "MIT",
"devDependencies": {
"@babel/plugin-proposal-decorators": "^7.0.0-beta.51",
"ava": "1.0.0-beta.6",
"fs-extra": "^7.0.0",
"rimraf": "^2.6.2",
"rollup": "^0.62.0",
"rollup-plugin-replace": "^2.0.0",
"rollup-plugin-typescript2": "^0.17.1",
"ts-node": "^7.0.0",
"typescript": "^2.9.2"
},
"repository": {
"type": "git",
"url": "git+https://github.com/HerbLuo/a-cache.git"
},
"keywords": [
"cache",
"disable",
"cache",
"decorators"
],
"ava": {
"files": [
"test/*.js",
"!test/utils/*.js"
],
"compileEnhancements": false,
"extensions": [
"ts"
],
"require": [
"ts-node/register"
]
},
"dependencies": {}
}