-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
117 lines (117 loc) · 2.41 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
{
"name": "create-webextension",
"version": "0.1.3",
"description": "Create a WebExtension in one command",
"bin": {
"create-webextension": "bin/create-webextension"
},
"main": "index.js",
"scripts": {
"test": "jest",
"lint": "xo",
"nsp-check": "nsp check -o summary"
},
"repository": {
"type": "git",
"url": "git+https://github.com/rpl/create-webextension.git"
},
"keywords": [
"create-webextension",
"webextension",
"firefox",
"boilerplate",
"addon"
],
"author": "Luca Greco <[email protected]>",
"contributors": [
"Elvina Valieva <[email protected]>"
],
"license": "MPL-2.0",
"bugs": {
"url": "https://github.com/rpl/create-webextension/issues"
},
"homepage": "https://github.com/rpl/create-webextension#readme",
"dependencies": {
"chalk": "^1.1.3",
"mz": "^2.6.0",
"strip-ansi": "^3.0.1"
},
"devDependencies": {
"addons-linter": "^0.22.3",
"babel-jest": "^20.0.3",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-2": "^6.24.1",
"es6-promisify": "^5.0.0",
"eslint-plugin-jest": "^20.0.3",
"jest": "^20.0.4",
"nsp": "^2.6.3",
"regenerator-runtime": "^0.10.5",
"tmp": "0.0.31",
"xo": "^0.18.2"
},
"jest": {
"transform": {
".*": "<rootDir>/node_modules/babel-jest"
},
"testEnvironment": "node",
"testMatch": [
"<rootDir>/__tests__/**/*.test.js",
"<rootDir>/__tests__/*.test.js"
],
"testPathIgnorePatterns": [
"node_modules/"
]
},
"babel": {
"compact": false,
"presets": [
"es2015",
"stage-2"
],
"plugins": [
[
"transform-runtime",
{
"polyfill": false,
"regenerator": true
}
]
]
},
"xo": {
"extends": [
"plugin:jest/recommended"
],
"plugins": [
"jest"
],
"envs": [
"jest/globals"
],
"space": true,
"ignores": [
"assets/**/*",
"node_modules/**/*"
],
"rules": {
"quotes": [
"error",
"double",
{
"allowTemplateLiterals": true
}
],
"comma-dangle": [
"error",
"always-multiline"
],
"camelcase": 0,
"arrow-parens": 0,
"unicorn/no-process-exit": 0,
"quote-props": 0,
"unicorn/catch-error-name": 0,
"func-names": 0
}
}
}