-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
55 lines (55 loc) · 1.58 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
{
"name": "@chiiya/haven",
"version": "0.7.0",
"author": "Elisha Witte <elishawitte@gmail.com>",
"license": "MIT",
"description": "GDPR-ready cookie consent manager with type definitions and zero dependencies",
"main": "dist/haven.umd.min.js",
"module": "dist/esm/index.esm.js",
"typings": "dist/index.esm.d.ts",
"sideEffects": false,
"directories": {
"dist": "dist",
"src": "src"
},
"files": [
"dist",
"src"
],
"repository": {
"type": "git",
"url": "git+https://github.com/chiiya/haven"
},
"scripts": {
"build": "npm-run-all build:umd build:esm build:types",
"build:umd": "bili",
"build:esm": "rollup -c rollup.config.js",
"build:types": "tsc --project tsconfig.types.json",
"docs:dev": "vuepress dev docs",
"docs:build": "vuepress build docs",
"test": "echo \"Error: no tests specified\" && exit 0"
},
"devDependencies": {
"@babel/core": "^7.9.6",
"@babel/plugin-proposal-class-properties": "^7.8.3",
"@babel/plugin-transform-runtime": "^7.9.6",
"@babel/preset-env": "^7.9.6",
"@babel/preset-typescript": "^7.9.0",
"@rollup/plugin-yaml": "^2.1.0",
"@types/node": "^13.9.0",
"bili": "^4.8.1",
"core-js": "3",
"cross-env": "^7.0.2",
"npm-run-all": "^4.1.5",
"rollup": "^2.7.5",
"rollup-plugin-babel": "^4.4.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-typescript2": "^0.26.0",
"rollup-plugin-yaml": "^2.0.0",
"ts-node": "^8.3.0",
"tslint": "^5.18.0",
"tslint-config-airbnb": "^5.11.1",
"typescript": "^3.5.3",
"vuepress": "^1.2.0"
}
}