-
Notifications
You must be signed in to change notification settings - Fork 28
/
package.json
54 lines (54 loc) · 1.33 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
{
"author": "Matt Friedman",
"license": "GPL-2.0",
"dependencies": {
"tablednd": "^1.0.5"
},
"devDependencies": {
"copyfiles": "^2.4.1",
"eslint": "^9.14.0",
"jshint": "^2.13.1",
"jshint-stylish": "^2.0.1",
"npm-run-all": "^4.1.5",
"npm-watch": "^0.13.0",
"uglify-js": "^3.14.3"
},
"watch": {
"js-minify": "styles/all/template/js/abbc3.js"
},
"scripts": {
"js": "npm-run-all jshint eslint js-minify",
"jshint": "jshint styles/all/template/js/abbc3.js",
"eslint": "eslint styles/all/template/js/abbc3.js",
"js-minify": "uglifyjs styles/all/template/js/abbc3.js --source-map --output styles/all/template/js/abbc3.min.js",
"copy-tablednd": "copyfiles --flat node_modules/tablednd/dist/jquery.tablednd.js node_modules/tablednd/dist/jquery.tablednd.min.js styles/all/template/js",
"build": "npm-run-all --parallel js copy-tablednd",
"watch": "npm-watch"
},
"jshintConfig": {
"globals": {
"is_ie": true,
"form_name": true,
"text_name": true,
"baseHeight": true,
"storeCaret": true,
"bbfontstyle": true,
"insert_text": true,
"phpbb": true
},
"bitwise": true,
"curly": true,
"eqeqeq": true,
"esversion": 6,
"forin": false,
"freeze": true,
"noarg": true,
"nonbsp": true,
"undef": true,
"unused": true,
"strict": true,
"browser": true,
"devel": false,
"jquery": true
}
}