-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
67 lines (67 loc) · 1.91 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
{
"private": true,
"name": "moodle-auth-ouopenid",
"description": "(See - 'composer.json') | © The Open University.",
"version": "2.0.0-beta",
"license": "UNLICENSED",
"main": "js/index.js",
"bin": {
"fix-tesla-tpl": "bin/fix-tesla-tpl.js"
},
"devDependencies": {
"browserify": "^14.4.0",
"browserify-banner": "^1.0.6",
"derequire": "^2.0.6",
"less": "^2.7.2",
"pa11y-ci": "^1.3.1",
"replace": "^0.3.0",
"semistandard": "^11.0.0",
"uglify-js": "^3.3.12",
"uncomment-cli": "git+https://github.com/nfreear/uncomment-cli.git#0.9.0"
},
"x-deps": {
"envify": "^4.1.0",
"shellsubstitute": "^1.2.0",
"eslint": "^4.3.0",
"eslint-plugin-react": "^7.1.0"
},
"scripts": {
"ver-time": "# node bin/_ver.js",
"browserify": "browserify js/index.js | derequire | _unc > dist.js",
"uglify-2": "uglifyjs js/src/_comment.js dist.js --comments -co dist.min.js",
"uglify": "uglifyjs user/*.js --comments='/^!/' -bo ouop.min.js",
"less": "lessc style/*.less style/ouop-styles.css",
"pa11y-ci-demo": "source .env; pa11y-ci -c .pa11yci.conf.js # envify pa11yci.DIST.json",
"pa11y-ci": "pa11y-ci -c .pa11yci.conf.js",
"pa11y-ci-2": "PA11YCI_2=true pa11y-ci -c .pa11yci.conf.js",
"eslint": "eslint js/ js/src/ user/*.js && echo eslint OK!",
"semi": "semistandard"
},
"eslintConfig": {
"extends": "eslint:recommended",
"env": { "commonjs": true },
"rules": {
"no-console": "off"
},
"globals": { "window": false, "console": false, "ga": false }
},
"jshintConfig": {
"esversion": 6,
"browserify": true,
"curly": true,
"eqeqeq": true,
"nocomma": true,
"undef": true,
"unused": true,
"onecase": true,
"globals": { "window": false, "console": false, "ga": false }
},
"semistandard": {
"ignore": [
"bundle.js",
"dist*.js",
"/ouop*.js",
"*.min.js"
]
}
}