-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
79 lines (79 loc) · 1.86 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
75
76
77
78
79
{
"name": "grindstone",
"version": "3.4.0",
"main": "dist/grindstone.min.js",
"license": "MIT",
"author": {
"name": "dzervoudakes and contributors"
},
"repository": {
"type": "git",
"url": "https://github.com/dzervoudakes/grindstonejs"
},
"scripts": {
"build": "gulp build",
"clean": "gulp clean",
"docs": "gulp jsdoc",
"lint": "eslint . --ext js",
"lint:fix": "eslint . --ext js --fix",
"prepublishOnly": "npm run test:all",
"test": "gulp test",
"test:all": "./scripts/prepublish.sh",
"start": "gulp watch"
},
"dependencies": {
"common-tags": "1.8.0",
"gulp": "4.0.2",
"gulp-babel": "8.0.0",
"gulp-clean": "0.4.0",
"gulp-concat": "2.6.1",
"gulp-header": "2.0.9",
"gulp-jest": "4.0.3",
"gulp-preprocess": "3.0.3",
"gulp-rename": "2.0.0",
"gulp-strip-comments": "2.5.2",
"gulp-uglify": "3.0.2",
"minami": "1.2.3"
},
"devDependencies": {
"@babel/core": "7.11.0",
"@babel/plugin-transform-strict-mode": "7.10.4",
"@babel/preset-env": "7.11.0",
"@dztools/eslint-config-base": "1.0.2",
"@dztools/prettier-config": "1.0.2",
"babel-eslint": "10.1.0",
"eslint": "7.6.0",
"eslint-config-airbnb-base": "14.2.0",
"eslint-config-prettier": "6.11.0",
"eslint-plugin-import": "2.22.0",
"eslint-plugin-jest": "23.20.0",
"eslint-plugin-prettier": "3.1.4",
"gulp-jsdoc3": "3.0.0",
"gulp-load-plugins": "2.0.3",
"husky": "4.2.5",
"jest-cli": "25.0.0",
"lint-staged": "10.2.11",
"prettier": "2.0.5"
},
"keywords": [
"grindstone",
"javascript",
"library",
"jquery",
"lightweight"
],
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"engines": {
"node": ">= 13.6.0",
"npm": ">= 6.4.1"
},
"browserslist": [
"> 1%",
"last 2 versions",
"not ie <= 9"
]
}