forked from andcastillo/functional-light
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.54 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.54 KB
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
{
"name": "functional-light",
"version": "0.6.0",
"description": "Librería para el curso de programación funcional con JavaScript",
"keywords": [
"functional",
"paradigm"
],
"files": [
"lib",
"functional-light.js"
],
"author": "Andrés M. Castillo",
"repository": "andcastillo/functional-light",
"bugs": {
"url": "https://github.com/andcastillo/functional-light/issues"
},
"homepage": "https://github.com/andcastillo/functional-light",
"license": "MIT",
"main": "lib/index.js",
"directories": {
"lib": "src"
},
"jest": {
"roots": [
"<rootDir>/src"
]
},
"scripts": {
"test": "npm run testonly",
"testonly": "jest",
"build": "npm run build-clean && npm run compile && npm run build-dist",
"build-clean": "rimraf ./lib/",
"build-dist": "cheminfo build -u",
"compile": "babel src --out-dir lib --quiet --ignore __tests__",
"prepublish": "npm run compile",
"jsdoc": "jsdoc2md src/index.js > docs/functional-light.md",
"publish2": "npm publish"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-preset-env": "^1.7.0",
"chai": "4.2.0",
"eslint": "^6.6.0",
"eslint-config-cheminfo": "^2.0.4",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jest": "^23.0.2",
"jest": "^24.5.0",
"jsdoc-to-markdown": "^5.0.0",
"rimraf": "^2.6.3"
},
"dependencies": {}
}