forked from auth0/lock
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
134 lines (134 loc) · 4.25 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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
{
"name": "auth0-lock",
"version": "11.9.0",
"description": "Auth0 Lock",
"author": "Auth0 <[email protected]> (http://auth0.com)",
"license": "MIT",
"keywords": ["auth0", "auth", "openid", "authentication", "passwordless", "browser", "jwt"],
"repository": {
"type": "git",
"url": "git://github.com/auth0/lock"
},
"main": "lib/index.js",
"scripts": {
"start": "grunt dev",
"build": "grunt build",
"design": "grunt design",
"dev": "grunt dev",
"dist": "grunt dist",
"prepublish": "cross-env BABEL_ENV=npm grunt dist",
"precommit": "lint-staged",
"lint": "eslint --ext .jsx,.js src/",
"test": "cross-env BABEL_ENV=test zuul -- test/**/*.test.js",
"test:browser":
"cross-env BABEL_ENV=test zuul --local 8080 --disable-tunnel -- test/**/*.test.js",
"test:cli":
"cross-env BABEL_ENV=test mochify --extension=.jsx --transform=babelify ./test/setup.js test/**/*.test.js",
"test:watch":
"cross-env BABEL_ENV=test mochify --watch --extension=.jsx --transform=babelify ./test/setup.js test/**/*.test.js",
"test:jest": "jest --coverage --runInBand",
"test:jest:watch": "jest --watch --coverage",
"publish:cdn": "ccu",
"release": "scripts/release.sh",
"i18n:translate": "grunt dist && node scripts/complete-translations.js"
},
"devDependencies": {
"babel-core": "^6.17.0",
"babel-eslint": "^7.2.2",
"babel-loader": "^6.2.5",
"babel-plugin-stylus-compiler": "^1.4.0",
"babel-plugin-transform-css-import-to-string": "0.0.2",
"babel-plugin-version-inline": "^1.0.0",
"babel-preset-es2015": "^6.22.0",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-0": "^6.3.13",
"babelify": "^7.2.0",
"bump-version": "^0.5.0",
"component-cdn-uploader": "auth0/component-cdn-uploader#v1.3.0",
"cross-env": "^3.1.4",
"css-loader": "^0.26.1",
"dotenv": "^4.0.0",
"enzyme": "^3.1.0",
"enzyme-adapter-react-15": "^1.0.1",
"eslint": "^4.8.0",
"eslint-config-prettier": "^2.6.0",
"eslint-plugin-react": "^7.4.0",
"expect.js": "^0.3.1",
"flat": "^2.0.1",
"grunt": "^0.4.5",
"grunt-babel": "^6.0.0",
"grunt-cli": "^0.1.13",
"grunt-concurrent": "^2.3.1",
"grunt-contrib-clean": "^0.6.0",
"grunt-env": "^0.4.4",
"grunt-exec": "^0.4.6",
"grunt-webpack": "^2.0.1",
"husky": "^0.14.3",
"jest": "^21.2.1",
"json-beautify": "^1.0.1",
"jsonwebtoken": "^7.3.0",
"lint-staged": "^4.2.3",
"mochify": "^3.3.0",
"prettier": "^1.7.4",
"react-test-renderer": "^15.6.2",
"semver": "^5.3.0",
"sinon": "^1.15.4",
"stylus": "^0.54.5",
"stylus-loader": "^2.3.1",
"superagent": "^3.8.2",
"uglify-js": "^2.7.4",
"unminified-webpack-plugin": "^1.1.1",
"unreleased": "^0.1.0",
"watchify": "^3.7.0",
"webpack": "^2.2.1",
"webpack-core": "^0.6.8",
"webpack-dev-server": "^2.3.0",
"zuul": "3.10.1",
"zuul-ngrok": "4.0.0"
},
"dependencies": {
"auth0-js": "^9.7.3",
"auth0-password-policies": "auth0/auth0-password-policies#v1.0.1",
"blueimp-md5": "2.3.1",
"fbjs": "^0.3.1",
"immutable": "^3.7.3",
"jsonp": "^0.2.0",
"password-sheriff": "^1.1.0",
"prop-types": "^15.6.0",
"react": "^15.6.2",
"react-dom": "^15.6.2",
"react-transition-group": "^2.2.1",
"trim": "0.0.1",
"url-join": "^1.1.0"
},
"cdn-component": {
"name": "lock",
"cdn": "https://cdn.auth0.com",
"mainBundleFile": "lock.min.js",
"bucket": "assets.us.auth0.com",
"localPath": "build"
},
"jest": {
"modulePaths": ["<rootDir>/src/", "<rootDir>/src/__tests__"],
"setupFiles": ["<rootDir>/src/__tests__/setup-tests.js"],
"coveragePathIgnorePatterns": [
"/node_modules/",
"<rootDir>/test/",
"<rootDir>/lib/",
"<rootDir>/src/__tests__/testUtils.js",
"<rootDir>/src/__tests__/setup-tests.js"
],
"testPathIgnorePatterns": [
"/node_modules/",
"<rootDir>/test/",
"<rootDir>/lib/",
"<rootDir>/src/__tests__/testUtils.js",
"<rootDir>/src/__tests__/setup-tests.js"
],
"coverageReporters": ["lcov", "text-summary"]
},
"lint-staged": {
"*.{js,jsx}": ["npm run lint"],
"*.{js,jsx,json}": ["prettier --write --print-width 100 --single-quote", "git add"]
}
}