-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
48 lines (48 loc) · 1.1 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
{
"name": "@masaeedu/fp",
"version": "10.1.1",
"main": "dist/index.js",
"repository": "[email protected]:masaeedu/fp",
"author": "Asad Saeeduddin <[email protected]>",
"license": "MIT",
"publishConfig": {
"access": "public"
},
"files": [
"dist"
],
"scripts": {
"build": "shx rm -rf ./dist && babel src -d dist --source-maps",
"prepare": "yarn build",
"test": "yarn build && ava",
"bench": "node bench/index.js"
},
"ava": {
"files": [
"dist/**/*test.js"
],
"require": [
"@babel/polyfill"
]
},
"devDependencies": {
"@babel/cli": "^7.0.0-beta.42",
"@babel/core": "^7.0.0-beta.42",
"@babel/plugin-proposal-pipeline-operator": "^7.0.0",
"@babel/preset-env": "^7.0.0-beta.42",
"@babel/register": "^7.6.2",
"ava": "^0.25.0",
"benchmark": "^2.1.4",
"minimist": "^1.2.3",
"nyc": "^11.7.1",
"shx": "^0.3.2",
"yarn": "^1.22.0"
},
"dependencies": {
"@babel/polyfill": "^7.0.0-beta.52",
"@masaeedu/adt": "^1.0.3",
"@masaeedu/do": "^0.0.1",
"@masaeedu/infix": "^1.2.0",
"natch": "^1.1.1"
}
}