-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
38 lines (38 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
{
"name": "@typed/math",
"version": "3.0.0",
"description": "Math related functions",
"main": "lib/index.js",
"module": "lib.es2015/index.js",
"jsnext:main": "lib.es2015/index.js",
"typings": "lib/index.d.ts",
"types": "lib/index.d.ts",
"scripts": {
"build": "cd ../../ && node ./tools/build.js --only math",
"test": "yarn test:lint && yarn test:unit",
"test:browser": "yarn test:unit -- --browser",
"test:unit": "../../node_modules/.bin/typed-test 'src/*.test.ts' 'src/**/*.test.ts'",
"test:lint": "../../node_modules/.bin/prettier --write --print-width 100 --tab-width 2 --no-semi --single-quote --trailing-comma es5 --parser typescript src/**/*.ts"
},
"dependencies": {
"@typed/functions": "3.0.0",
"@typed/list": "3.0.0",
"@typed/maybe": "7.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/TylorS/typed.git"
},
"keywords": [
"typed",
"math",
"function",
"fp"
],
"author": "Tylor Steinberger <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/TylorS/typed/issues"
},
"homepage": "https://github.com/TylorS/typed#readme"
}