-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 1.03 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
{
"name": "@dovca/fp",
"version": "3.2.1",
"description": "Minimal functional programming in JavaScript",
"main": "index.js",
"keywords": [
"functional programming",
"fp",
"minimal",
"experimental",
"esoteric"
],
"author": "David Ovčačík <david@ovcacik.xyz> (https://github.com/dovca)",
"license": "ISC",
"repository": "dovca/fp-js",
"files": [
"/lib"
],
"devDependencies": {
"gulp": "^4.0.2",
"gulp-clone": "^2.0.1",
"gulp-preprocess": "^3.0.2",
"gulp-rename": "^1.4.0",
"gulp-replace": "^1.0.0",
"gulp-terser": "^1.2.0",
"gulp-watch": "^5.0.1",
"mocha": "^6.1.4",
"readline-sync": "^1.4.9",
"sinon": "^7.3.2"
},
"scripts": {
"clean": "rm -rf output",
"build": "gulp build",
"development": "gulp default",
"test": "mocha --exclude test/sources",
"pretest": "npm run clean && npm run build",
"dependency-graph": "node script/generateDependencies.js",
"prepare": "npm run build",
"prepublish": "npm run dependency-graph"
}
}