-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
74 lines (74 loc) · 1.9 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
{
"name": "safedom",
"version": "0.1.7",
"description": "safedom is a safe way to you manipulate dom using a purer functional style.",
"main": "./build/dist/safedom.min.js",
"scripts": {
"preversion": "npm run build",
"precommit": "lint-staged",
"build:publish": "sh ./bin/publish",
"build:dist": "webpack && uglifyjs build/dist/safedom.js -c \"warnings=false\" -m -o build/dist/safedom.min.js",
"build": "doctoc && rimraf build && buble -i src -o build && npm run build:dist",
"doctoc": "doctoc README.md",
"docs:dev": "cd docs && npm start",
"lint": "eslint --ext .md,.js .",
"lint:dev": "esw --ext .md,.js . -w --color",
"coverage": "nyc report --reporter=text-lcov | coveralls"
},
"lint-staged": {
"*.{js,md}": [
"eslint --fix",
"git add"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/victorvoid/dom-eff.git"
},
"keywords": [
"DOM",
"FP",
"Result",
"Applicative",
"Functional",
"Functor"
],
"author": "Victor Igor <victor.0w3@gmail.com> (https://victorvoid.me)",
"license": "MIT",
"bugs": {
"url": "https://github.com/victorvoid/domsafe/issues"
},
"homepage": "https://victorvoid.me/domsafe",
"nyc": {
"check-coverage": true,
"lines": 100,
"statements": 100,
"functions": 100,
"branches": 100,
"exclude": [
"src/",
"build/test/",
"**/*.spec.js"
]
},
"devDependencies": {
"all-contributors-cli": "^5.4.0",
"buble": "^0.19.4",
"coveralls": "^3.0.0",
"doctoc": "^1.3.1",
"eslint": "^5.6.1",
"eslint-plugin-markdown": "1.0.0-beta.6",
"eslint-watch": "^4.0.2",
"husky": "^0.14.3",
"lint-staged": "^7.3.0",
"nodemon": "1.17.1",
"nyc": "^13.0.1",
"rimraf": "^2.6.2",
"uglify-js": "^3.4.9",
"webpack": "^4.20.2",
"webpack-cli": "^3.1.1"
},
"dependencies": {
"folktale": "2.3.1"
}
}