-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.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": "flatmap-fns",
"version": "0.0.3",
"description": "Functional utils for your flat mapping needs.",
"main": "index.js",
"scripts": {
"clean": "rimraf dist",
"test": "jest",
"tsc": "tsc",
"build": "run-s clean tsc copy:package copy:readme",
"lint": "eslint 'src/**/*.ts'",
"copy:package": "cp -rf package.json dist",
"copy:readme": "cp -rf README.md dist",
"dist": "cd dist && npm publish"
},
"keywords": [
"flatmap",
"utils",
"functional",
"typescript"
],
"author": "Maximillian Einstein",
"license": "ISC",
"devDependencies": {
"@types/jest": "^26.0.24",
"@typescript-eslint/eslint-plugin": "^4.28.4",
"@typescript-eslint/parser": "^4.28.4",
"jest": "^27.0.6",
"npm-run-all": "^4.1.5",
"prettier": "^2.3.2",
"rimraf": "^3.0.2",
"ts-jest": "^27.0.4",
"typescript": "^4.3.5"
},
"repository": {
"type": "git",
"url": "https://github.com/meinstein/flatmap-fns.git"
},
"jest": {
"transform": {
"^.+\\.ts?$": "ts-jest"
},
"moduleFileExtensions": [
"ts",
"js"
]
}
}