-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
39 lines (39 loc) · 1.07 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
{
"name": "@tdameritrade/halfpipe",
"version": "1.0.1",
"description": "A functional library with pipe-able functions",
"main": "dist/es5/index.js",
"scripts": {
"prettier": "prettier \"src/**/*.ts\" \"./*.{ts,json}\"",
"prettier:check": "npm run prettier -- --check",
"prettier:write": "npm run prettier -- --write",
"test": "jest",
"build:es5": "tsc --p tsconfig.es5.json",
"build:es2015": "tsc --p tsconfig.es2015.json",
"build": "npm run build:es5 && npm run build:es2015",
"prebuild": "npm run clean",
"clean": "rm -rf ./dist",
"release": "standard-version"
},
"repository": "https://github.com/TDAmeritrade/halfpipe.git",
"keywords": [
"functional",
"pipe",
"pipeline"
],
"license": "BSD",
"dependencies": {
"lodash": "^4.17.15",
"monet": "^0.9.0",
"tslib": "^1.10.0"
},
"devDependencies": {
"@types/jest": "^24.0.15",
"@types/lodash": "^4.14.134",
"jest": "^24.8.0",
"prettier": "^1.18.2",
"standard-version": "^8.0.1",
"ts-jest": "^24.0.2",
"typescript": "^3.5.2"
}
}