-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
101 lines (101 loc) · 3.44 KB
/
package.json
File metadata and controls
101 lines (101 loc) · 3.44 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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
{
"name": "apache-auth",
"version": "1.0.0",
"description": "Frontend for transparent, application-agnostic SSO with Apache's mod_auth_form",
"main": "index.js",
"scripts": {
"build": "npm run build-css && npm run build-js",
"build-js": "mkdir -p src/client/static/dist && webpack --config config/webpack.js",
"build-css": "mkdir -p src/client/static/dist && sass --style compressed src/client/styles/main.scss:src/client/static/dist/main.css",
"build-js-watch": "mkdir -p src/client/static/dist && webpack --config config/webpack.js --watch --colors",
"build-css-watch": "mkdir -p src/client/static/dist && sass --watch --style compressed src/client/styles/main.scss:src/client/static/dist/main.css",
"start": "node index.js",
"start-watch": "nodemon index.js",
"dev": "concurrently --kill-others --prefix name --prefix-colors cyan.bold,yellow.bold,magenta.bold --names HTTP,JS,CSS 'npm run start-watch' 'npm run build-js-watch' 'npm run build-css-watch'",
"lint": "npm run lint-js && npm run lint-scss",
"lint-js": "eslint src test",
"lint-scss": "stylelint 'src/**/*.scss' --syntax scss",
"test": "node test | tap-spec",
"test-watch": "nodemon test | tap-spec",
"cover": "istanbul cover test --print detail",
"coveralls": "istanbul cover test --print detail && cat coverage/lcov.info | coveralls"
},
"repository": {
"type": "git",
"url": "https://github.com/LINKIWI/apache-auth.git"
},
"author": "Kevin Lin <developer@kevinlin.info>",
"license": "MIT",
"pre-commit": [
"lint",
"test"
],
"dependencies": {
"allu-client": "^0.0.3",
"babel-core": "^6.11.4",
"body-parser": "^1.15.2",
"browser-request": "^0.3.3",
"cookie-parser": "^1.4.3",
"deep-extend": "^0.4.1",
"dottie": "^1.1.1",
"duo_web": "^1.0.2",
"express": "^4.14.0",
"fingerprintjs2": "^1.4.1",
"humanize": "0.0.9",
"lru-cache": "^4.0.2",
"morgan": "^1.7.0",
"nedb": "^1.8.0",
"optional": "^0.1.3",
"pug": "^2.0.0-beta6",
"range": "0.0.3",
"raven": "^1.1.1",
"react": "^15.3.0",
"react-dom": "^15.3.0",
"react-duo-web": "0.0.1",
"react-favicon": "^0.0.5",
"react-helmet": "^3.1.0",
"react-icons": "^2.2.3",
"react-loading-hoc": "0.0.2",
"react-router": "^2.6.1",
"react-spinkit": "^2.0.0",
"request": "^2.79.0",
"u2f": "^0.1.2",
"u2f-api-polyfill": "^0.4.3"
},
"devDependencies": {
"babel": "^6.5.2",
"babel-cli": "^6.11.4",
"babel-eslint": "^6.1.2",
"babel-loader": "^6.2.4",
"babel-plugin-css-modules-transform": "^1.1.0",
"babel-plugin-rewire": "^1.0.0",
"babel-preset-es2015": "^6.9.0",
"babel-preset-react": "^6.11.1",
"babel-preset-stage-0": "^6.5.0",
"concurrently": "^3.3.0",
"coveralls": "^2.11.15",
"css-loader": "^0.26.1",
"enzyme": "^2.6.0",
"eslint": "^3.3.1",
"eslint-config-uber-jsx": "^3.0.1",
"eslint-plugin-react": "^6.1.2",
"istanbul": "^1.1.0-alpha.1",
"jsdom": "^9.8.3",
"nodemon": "^1.11.0",
"pre-commit": "^1.2.2",
"pug-cli": "^1.0.0-alpha6",
"react-addons-test-utils": "^15.4.1",
"recursive-readdir": "^2.1.0",
"sinon": "^1.17.6",
"style-loader": "^0.13.1",
"stylelint": "^7.8.0",
"stylelint-config-standard": "^16.0.0",
"stylelint-order": "^0.2.2",
"tap-spec": "^4.1.1",
"tape": "^4.6.0",
"webpack": "^1.13.1"
},
"optionalDependencies": {
"yubikey-validator": "^0.0.3"
}
}