-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 2.01 KB
/
package.json
File metadata and controls
75 lines (75 loc) · 2.01 KB
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
{
"name": "connexions-webview",
"version": "0.23.3",
"description": "Connexions (cnx.org) web site",
"scripts": {
"prepublish": "bower install --config.analytics=false",
"upgrade": "npm update; bower update --config.analytics=false",
"test": "grunt test --verbose",
"posttest": "lint-staged && node ./script/check-templates-for-non-i18n-text.js",
"dist": "grunt dist --verbose"
},
"lint-staged": {
"*.less": [
"stylelint --syntax=less --custom-formatter=node_modules/stylelint-formatter-pretty",
"git add"
]
},
"repository": {
"type": "git",
"url": "https://github.com/Connexions/webview.git"
},
"dependencies": {
"grunt": "~0.4.5",
"underscore": "^1.8.3"
},
"devDependencies": {
"bower": "^1.7.9",
"chromedriver": "^2.29.2",
"csso": "~1.3.11",
"finalhandler": "^1.0.3",
"glob": "^7.1.1",
"grunt-cache-bust": "^1.7.0",
"grunt-cli": "^1.2.0",
"grunt-coffeelint": "~0.0.13",
"grunt-contrib-clean": "~1.1.0",
"grunt-contrib-compress": "~1.4.3",
"grunt-contrib-copy": "~1.0.0",
"grunt-contrib-htmlmin": "~2.4.0",
"grunt-contrib-imagemin": "~2.0.1",
"grunt-contrib-jshint": "~1.1.0",
"grunt-contrib-requirejs": "~1.0.0",
"grunt-contrib-uglify": "~3.1.0",
"grunt-jsbeautifier": "~0.2.8",
"grunt-mocha": "1.0.4",
"grunt-nginx": "~0.2.2",
"grunt-string-replace": "~1.3.1",
"grunt-targethtml": "~0.2.6",
"husky": "^1.1.2",
"jquery": "^3.2.1",
"jsdom": "^11.3.0",
"less": "~1.7.5",
"lint-staged": "^7.2.2",
"mocha": "3.5.3",
"rjs-build-analysis": "~0.0.3",
"stylelint": "^9.5.0",
"stylelint-formatter-pretty": "^1.0.3",
"stylelint-order": "^1.0.0",
"selenium-webdriver": "^3.4.0",
"serve-static": "^1.12.3"
},
"license": [
{
"type": "AGPL",
"url": "https://github.com/Connexions/webview/blob/master/LICENSE.txt"
}
],
"engines": {
"node": ">=0.10"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
}
}