-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.63 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
{
"name": "ez-dom",
"version": "3.0.0",
"description": "ez-dom is minimalist and functionnal library to manipulate the DOM, with a simple API",
"main": "./lib/index.js",
"author": "Jonathan Dion <jonathandionalary@gmail.com> (jonathandion.com)",
"repository": {
"type": "git",
"url": "https://github.com/jonathandion/ez-dom.git"
},
"bugs": {
"url": "https://github.com/jonathandion/ez-dom/issues"
},
"license": "MIT",
"scripts": {
"dev": "babel -d lib/ src/ --watch",
"build": "BABEL_ENV=production babel -d lib/ src/",
"test-local": "jest ./tests/**/*.test.js --watch",
"test": "jest ./tests/**/*.test.js",
"publish-patch": "npm version patch && npm publish",
"flow-start": "flow start",
"flow-stop": "flow stop",
"flow-status": "flow status",
"flow-coverage": "flow coverage"
},
"keywords": [
"javascript",
"functional programming",
"fp",
"dom",
"query",
"selector",
"html",
"zepto",
"jquery",
"element",
"jquery aternative"
],
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-core": "^6.24.1",
"babel-eslint": "^7.2.3",
"babel-jest": "^20.0.0",
"babel-plugin-remove-comments": "^2.0.0",
"babel-plugin-transform-remove-console": "^6.8.1",
"babel-preset-babili": "0.0.12",
"babel-preset-env": "^1.4.0",
"babel-preset-es2017": "^6.24.1",
"babel-preset-flow": "^6.23.0",
"babili": "0.0.12",
"eslint": "^3.19.0",
"eslint-config-airbnb-base": "^11.2.0",
"eslint-plugin-import": "^2.2.0",
"jest": "^20.0.0",
"prettier": "^1.3.1"
},
"dependencies": {
"lodash": "^4.17.4"
}
}