-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
65 lines (65 loc) · 1.99 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
56
57
58
59
60
61
62
63
64
65
{
"name": "simple-fp",
"version": "2.0.0",
"description": "A simple, small, no dependency functional programming library",
"keywords": [
"functional",
"simple",
"small",
"browser",
"server",
"client",
"util",
"fp",
"typescript"
],
"main": "dist/index.js",
"scripts": {
"start": "npm run tsc:watch",
"tsc": "tsc",
"tsc:watch": "tsc -w",
"lint": "eslint src/**/*.ts",
"rollup": "rm -rf dist && rollup build/index.js --output.format umd --name \"fp\" --output.file dist/index.js",
"rollup:watch": "rm -rf dist && rollup build/index.js --output.format umd --name \"fp\" --output.file dist/index.js -w",
"build": "rm -rf build && npm run tsc && npm run rollup",
"build:watch": "concurrently \"npm run tsc:watch\" \"npm run rollup:watch\"",
"test": "NODE_ENV=test jest src",
"test:watch": "NODE_ENV=test npm run test -- --watch",
"test:build": "NODE_ENV=test npm run build && cp -R build/__tests__ dist/__tests__ && jest dist",
"test:ci": "npm run lint && npm run test && npm run test:build",
"prepush": "npm run test:ci"
},
"author": "Blake Tarter <[email protected]>",
"repository": {
"type": "git",
"url": "https://github.com/blaketarter/simple-fp"
},
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.8.7",
"@babel/preset-env": "^7.8.7",
"@babel/preset-typescript": "^7.8.3",
"@types/jest": "^25.1.4",
"@typescript-eslint/eslint-plugin": "^2.22.0",
"@typescript-eslint/parser": "^2.22.0",
"babel-eslint": "^10.1.0",
"babel-jest": "^25.1.0",
"concurrently": "^5.1.0",
"eslint": "^6.8.0",
"eslint-config-prettier": "6.10.0",
"eslint-plugin-import": "^2.20.1",
"eslint-plugin-jest": "^23.8.0",
"eslint-plugin-prettier": "3.1.2",
"husky": "^4.2.3",
"jest": "^25.1.0",
"prettier": "^1.19.1",
"rollup": "^2.0.6",
"typescript": "^3.8.3"
},
"dependencies": {},
"husky": {
"hooks": {
"pre-push": "npm run prepush"
}
}
}