Skip to content

Commit a098a00

Browse files
committed
Issue webcompat#977 - Adding Mozilla Public License 2.0 to Package.json
1 parent 3bb0a41 commit a098a00

File tree

1 file changed

+40
-13
lines changed

1 file changed

+40
-13
lines changed

package.json

+40-13
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
"grunt-contrib-uglify": "~0.2.7",
2828
"grunt-contrib-watch": "~0.5.3",
2929
"grunt-eslint": "^17.3.1",
30-
"grunt-postcss": "^0.8.0",
30+
"grunt-postcss": "~0.8.0",
3131
"intern": "2.2.0",
3232
"load-grunt-tasks": "~0.6.0",
3333
"postcss": "^5.0.19",
@@ -41,11 +41,11 @@
4141
},
4242
"scripts": {
4343
"init": "npm run module && npm run virtualenv && npm run pip && npm install && npm run config",
44-
"watch" : "grunt watch",
44+
"watch": "grunt watch",
4545
"build": "grunt",
4646
"module": "git submodule init && git submodule update",
4747
"start": "source env/bin/activate && python run.py",
48-
"virtualenv" : "pip install virtualenv && virtualenv env && source env/bin/activate",
48+
"virtualenv": "pip install virtualenv && virtualenv env && source env/bin/activate",
4949
"pip": "pip install -r config/requirements.txt",
5050
"config": "cp config/secrets.py.example config/secrets.py",
5151
"project-update": "pip install --upgrade pip && npm run backend-install && npm update"
@@ -78,25 +78,52 @@
7878
},
7979
"rules": {
8080
"comma-dangle": 0,
81-
"curly": [2, "all"],
82-
"eqeqeq": [2, "smart"],
83-
"indent": [2, 2],
84-
"linebreak-style": [2, "unix"],
81+
"curly": [
82+
2,
83+
"all"
84+
],
85+
"eqeqeq": [
86+
2,
87+
"smart"
88+
],
89+
"indent": [
90+
2,
91+
2
92+
],
93+
"linebreak-style": [
94+
2,
95+
"unix"
96+
],
8597
"new-cap": 2,
8698
"no-cond-assign": 0,
8799
"no-spaced-func": 2,
88100
"no-use-before-define": 2,
89-
"one-var": [2, "never"],
90-
"quotes": [2, "single"],
91-
"semi": [2, "always"],
101+
"one-var": [
102+
2,
103+
"never"
104+
],
105+
"quotes": [
106+
2,
107+
"single"
108+
],
109+
"semi": [
110+
2,
111+
"always"
112+
],
92113
"space-after-keywords": 2,
93114
"space-before-blocks": 2,
94-
"space-before-function-paren": [2, "never"],
95-
"space-before-keywords": [2, "always"],
115+
"space-before-function-paren": [
116+
2,
117+
"never"
118+
],
119+
"space-before-keywords": [
120+
2,
121+
"always"
122+
],
96123
"space-infix-ops": 2,
97124
"space-return-throw-case": 2,
98125
"space-unary-ops": 2
99126
}
100127
},
101-
"license": "MPL-2.0"
128+
"license": "MPL-2.0"
102129
}

0 commit comments

Comments
 (0)