forked from jimmywarting/native-file-system-adapter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 950 Bytes
/
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
{
"name": "@narrative.io/native-file-system-adapter",
"version": "0.0.1-beta.0",
"description": "Native File System API",
"private": false,
"scripts": {
"test": "exit 0",
"build": "rm -rf dist && rollup -c rollup.config.js",
"release:prod": "npm publish -access public",
"release:dev": "npm publish -access public --tag beta"
},
"repository": {
"type": "git",
"url": "git+https://github.com/narrative-io/native-file-system-adapter.git"
},
"author": "Jimmy Wärting",
"types": "types/es6.d.ts",
"license": "MIT",
"main": "dist/es6.js",
"unpkg": "distes6.js",
"cdn": "dist/es6.js",
"browser": "dist/es6.js",
"jsdelivr": "dist/es6.js",
"files": [
"src",
"dist",
"LICENSE",
"README.md"
],
"devDependencies": {
"rollup": "^2.22.1",
"rollup-plugin-terser": "^6.1.0",
"rollup-plugin-url-import": "^0.4.0"
},
"dependencies": {
"web-streams-polyfill": "^2.1.1"
}
}