-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
55 lines (55 loc) · 1.4 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
49
50
51
52
53
54
55
{
"name": "pure-fun",
"version": "2.0.0",
"description": "A collection of pure functions/helpers with 0 dependencies",
"main": "dist/pure-fun.js",
"module": "dist/pure-fun.mjs",
"unpkg": "dist/pure-fun.umd.js",
"source": "src/index.ts",
"typings": "dist/pure-fun.d.ts",
"scripts": {
"build": "microbundle",
"start": "microbundle watch",
"lint:fix": "eslint src/ --fix",
"lint:build": "eslint esm/ --fix",
"lint": "eslint ./",
"release": "np",
"test": "jest",
"test:watch": "jest --watch",
"update": "npm-check -u -E --production",
"update:dev": "npm-check -u -E --dev-only"
},
"repository": {
"type": "git",
"url": "git+https://github.com/thibmaek/pure-fun.git"
},
"keywords": [
"pure",
"functions",
"fp",
"helper",
"util",
"pure-functions",
"typescript"
],
"author": "Thibault Maekelbergh",
"license": "MIT",
"bugs": {
"url": "https://github.com/thibmaek/pure-fun/issues"
},
"homepage": "https://github.com/thibmaek/pure-fun#readme",
"devDependencies": {
"@babel/core": "^7.4.4",
"@babel/preset-env": "^7.4.4",
"@babel/preset-typescript": "^7.3.3",
"babel-jest": "^24.8.0",
"eslint": "^5.4.0",
"eslint-config-thibmaek": "^1.0.4",
"husky": "^1.0.1",
"jest": "24.8.0",
"lint-staged": "^8.0.0",
"microbundle": "^0.11.0",
"np": "^2.18.3",
"npm-check": "^5.9.0"
}
}