-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
50 lines (50 loc) · 1.45 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
{
"name": "adorn-kit",
"version": "1.3.3",
"description": "Markup beautifier drop in script",
"main": "adorn.js",
"scripts": {
"build": "webpack",
"lint": "eslint ./",
"lint-fix": "eslint --fix ./",
"test": "npm run lint && npm run build",
"lint-diff": "LIST=`git diff-index --name-only HEAD | grep '.*\\.js$';`; if [ \"$LIST\" ]; then eslint $LIST; fi",
"precommit-msg": "echo 'Running pre-commit checks... (skip using --no-verify)' && exit 0"
},
"pre-commit": [
"precommit-msg",
"lint-diff"
],
"repository": {
"type": "git",
"url": "https://github.com/MrSwitch/adorn.git"
},
"author": "Andrew Dodson",
"license": "ISC",
"bugs": {
"url": "https://github.com/MrSwitch/adorn/issues"
},
"homepage": "https://github.com/MrSwitch/adorn",
"devDependencies": {
"@babel/core": "^7.0.0",
"@babel/plugin-proposal-object-rest-spread": "^7.0.0",
"@babel/plugin-transform-modules-commonjs": "^7.4.4",
"@babel/preset-env": "^7.0.0",
"babel-loader": "^8.0.0",
"css-loader": "^0.28.11",
"eslint": "^5.16.0",
"eslint-config-mr": "^1.2.0",
"eslint-plugin-promise": "^4.1.1",
"extract-text-webpack-plugin": "^4.0.0-beta.0",
"less": "^3.9.0",
"less-loader": "^5.0.0",
"pre-commit": "^1.2.2",
"style-loader": "^0.23.1",
"uglifyjs-webpack-plugin": "^1.3.0",
"webpack": "^4.32.2",
"webpack-cli": "^3.3.2"
},
"dependencies": {
"tricks": "^1.11.1"
}
}