-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 1.2 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
{
"name": "petite-auth",
"version": "1.1.0",
"description": "Tiny JavaScript OAuth2 client",
"keywords": [
"oauth2",
"oauth2-client"
],
"source": "src/index.js",
"module": "dist/petite-auth.es.js",
"main": "dist/petite-auth.js",
"umd:main": "dist/petite-auth.umd.js",
"types": "src/petite-auth.d.ts",
"files": [
"src",
"dist"
],
"repository": "dramloc/petite-auth",
"author": "Antoine Colmard <a.colmard@gmail.com>",
"license": "MIT",
"scripts": {
"prepublish": "npm run build && npm test",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"build": "microbundle",
"dev": "microbundle watch",
"test": "npm run -s lint && jest"
},
"devDependencies": {
"babel-core": "^6.26.0",
"babel-jest": "^22.4.3",
"babel-preset-env": "^1.6.1",
"eslint": "^4.19.1",
"eslint-config-synacor": "^3.0.1",
"eslint-plugin-jest": "^21.15.0",
"jest": "^22.4.3",
"jest-localstorage-mock": "^2.2.0",
"microbundle": "^0.4.4"
},
"eslintConfig": {
"extends": [
"plugin:jest/recommended",
"synacor"
],
"plugins": [
"jest"
]
},
"eslintIgnore": [
"dist"
],
"jest": {
"setupFiles": [
"jest-localstorage-mock",
"./src/__mocks__/crypto",
"./src/__mocks__/location"
]
}
}