-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
25 lines (25 loc) · 777 Bytes
/
package.json
File metadata and controls
25 lines (25 loc) · 777 Bytes
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
{
"name": "functional-programming",
"version": "1.0.0",
"description": "Functional Programming Practices and Utilities",
"main": "index.js",
"scripts": {
"start": "parcel ./src/index.html",
"build:doc": "jsdoc2md --template main.hbs --files ./src/lib/*.ts --configure ./jsdoc2md.json > ./README.md"
},
"author": "",
"license": "ISC",
"devDependencies": {
"@babel/cli": "^7.5.5",
"@babel/core": "^7.5.5",
"@babel/plugin-proposal-class-properties": "^7.5.5",
"@babel/plugin-proposal-object-rest-spread": "^7.5.5",
"@babel/preset-env": "^7.5.5",
"@babel/preset-typescript": "^7.3.3",
"jsdoc-babel": "^0.5.0",
"jsdoc-to-markdown": "^5.0.0",
"parcel": "^1.12.4",
"tslint": "^6.1.1",
"typescript": "^3.8.3"
}
}