-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
68 lines (68 loc) · 1.97 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
{
"name": "gaspard",
"version": "5.0.3",
"description": "Lightweight DOM helpers",
"homepage": "https://github.com/lucaperret/gaspard",
"main": "dist/gaspard.umd.js",
"module": "src/index.js",
"sideEffects": false,
"scripts": {
"commit": "git-cz",
"dev": "webpack-dev-server --open -d",
"build": "webpack --mode production",
"build:examples": "webpack --config examples/webpack.config.js",
"test": "jest",
"coveralls": "cat test/coverage/lcov.info | coveralls",
"test:watch": "jest --watch",
"lint": "eslint --ext .js src",
"doc": "doxdox 'src/*.js' --layout markdown --output docs/API.md"
},
"keywords": [
"jquery",
"dom",
"helper",
"document",
"selector",
"attribute",
"position",
"selector"
],
"author": "Luca Perret <[email protected]>",
"license": "MIT",
"bugs": "https://github.com/lucaperret/gaspard/issues",
"repository": "lucaperret/gaspard",
"dependencies": {},
"devDependencies": {
"@babel/core": "^7.1.5",
"@babel/plugin-transform-modules-commonjs": "^7.1.0",
"@babel/preset-env": "^7.1.5",
"babel-core": "^7.0.0-bridge.0",
"babel-jest": "^23.6.0",
"babel-loader": "^8.0.0-beta.6",
"commitizen": "^3.0.4",
"coveralls": "^3.0.2",
"cz-conventional-changelog": "^2.1.0",
"doxdox": "^2.0.3",
"eslint": "^5.9.0",
"eslint-config-standard": "^12.0.0",
"eslint-friendly-formatter": "^4.0.1",
"eslint-loader": "^2.1.1",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jest": "^22.0.0",
"eslint-plugin-node": "^8.0.0",
"eslint-plugin-promise": "^4.0.1",
"eslint-plugin-standard": "^4.0.0",
"friendly-errors-webpack-plugin": "^1.7.0",
"html-webpack-plugin": "^3.2.0",
"jest": "^23.6.0",
"semantic-release": "^15.11.0",
"webpack": "^4.25.1",
"webpack-cli": "^3.1.2",
"webpack-dev-server": "^3.1.10"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}