-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
34 lines (34 loc) · 925 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
{
"name": "@joakin/sum-types",
"version": "1.0.1",
"description": "",
"scripts": {
"build": "microbundle",
"build:docs": "cp README.md docs/index.md && markdown-folder-to-html",
"deploy:docs": "npm run build:docs && gh-pages -d _docs",
"format": "prettier --write '{src,tests}/**/*.js' '**/*.md'",
"test": "tape -r esm 'tests/**/*.js'"
},
"source": "src/index.js",
"main": "dist/index.js",
"umd:main": "dist/index.umd.js",
"module": "dist/index.m.js",
"files": [
"dist/"
],
"keywords": [],
"author": "Joaquin Oltra <[email protected]> (http://chimeces.com)",
"license": "ISC",
"repository": {
"url": "https://github.com/joakin/sum-types/"
},
"devDependencies": {
"esm": "^3.0.17",
"gh-pages": "^1.1.0",
"markdown-folder-to-html": "^1.6.0",
"microbundle": "^0.4.4",
"prettier": "^1.12.0",
"tap-dot": "^1.0.5",
"tape": "^4.9.0"
}
}