-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.16 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
{
"name": "set-fns",
"version": "1.0.0",
"description": "A utility library for working with sets.",
"repository": "github:haydn/set-fns",
"keywords": [
"set",
"utility",
"set theory",
"union",
"intersect",
"subset"
],
"main": "cjs/index.js",
"author": "Haydn Ewers",
"license": "MIT",
"private": false,
"scripts": {
"build": "yarn build:declaration && yarn build:cjs && yarn build:umd && yarn build:esm",
"build:declaration": "tsc index.ts --downlevelIteration --declaration --emitDeclarationOnly",
"build:cjs": "tsc index.ts --downlevelIteration --target ES2015 --module CommonJS --outDir cjs",
"build:umd": "tsc index.ts --downlevelIteration --target ES2015 --module UMD --outDir umd",
"build:esm": "tsc index.ts --target ESNext --module ESNext --outDir esm",
"test": "tsc test.ts --downlevelIteration --lib ES2015 && node test.js",
"release": "np"
},
"files": [
"index.d.ts",
"index.js.flow",
"cjs/index.js",
"umd/index.js",
"esm/index.js",
"LICENSE",
"README.md"
],
"devDependencies": {
"@types/node": "^12.0.8",
"np": "^5.0.3",
"typescript": "^3.5.2"
}
}