generated from customcommander/project-blueprint
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.25 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
{
"name": "@customcommander/functionaut",
"version": "4.2.0",
"author": "customcommander <hello@spinjs.com>",
"repository": "https://github.com/customcommander/functionaut.git",
"homepage": "https://customcommander.github.io/functionaut/",
"bugs": {
"url": "https://github.com/customcommander/functionaut/issues"
},
"description": "General purpose library for the functional programming hobbyist.",
"keywords": [
"functional programming"
],
"files": [
"dist/index.js",
"dist/browser.min.js"
],
"main": "dist/index.js",
"browser": "dist/browser.min.js",
"license": "MIT",
"dependencies": {},
"devDependencies": {
"@semantic-release/changelog": "^6.0.1",
"@semantic-release/git": "^10.0.1",
"ejs": "^3.1.6",
"js-yaml": "^4.1.0",
"jsdoc": "^3.6.10",
"jsverify": "^0.8.4",
"semantic-release": "^19.0.2",
"tape": "^5.5.2",
"testdouble": "^3.16.4"
},
"publishConfig": {
"access": "public"
},
"scripts": {
"start": "./init.sh && docker-compose up",
"stop": "docker-compose down",
"cmd": "docker-compose exec dev bash",
"dist": "docker-compose exec dev make dist",
"test": "docker-compose exec dev make test",
"docs": "docker-compose exec dev make build/docs"
}
}