-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 1.18 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
{
"name": "jseasy",
"version": "0.1.0",
"description": "A small intuitive functional library crafted to solve most common JavaScript problems in pure functional style..",
"main": "src/js/index.js",
"jest": {
"verbose": true,
"testEnvironment": "node"
},
"scripts": {
"copy": "cp ./dist/jseasy.min.js ./node_modules/minami/static/scripts/",
"test": "npm run lint && jest",
"coverage": "jest --coverage",
"lint": "eslint src webpack.config.js",
"build": "webpack",
"watch": "webpack --watch",
"ci": "npm run test && npm run coverage",
"generate-docs": "./node_modules/.bin/jsdoc -r -c jsdoc.json",
"deploy": "npm run test && npm run coverage && npm run build && npm run copy && npm run generate-docs"
},
"eslintIgnore": [
"*.test.js"
],
"author": "Stefan Lazarevic <[email protected]>",
"license": "MIT",
"dependencies": {},
"devDependencies": {
"babel-core": "6.26.3",
"babel-loader": "7.1.4",
"babel-preset-es2015": "6.24.1",
"docdash": "0.4.0",
"eslint": "4.19.1",
"eslint-watch": "3.1.3",
"jest": "22.4.3",
"jsdoc": "3.5.5",
"minami": "1.2.3",
"webpack": "3.11.0"
}
}