-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
51 lines (51 loc) · 1.38 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
{
"name": "oojs",
"version": "7.0.1",
"description": "Power for object oriented JavaScript libraries.",
"keywords": [
"oo",
"oop",
"class",
"inheritance",
"library"
],
"homepage": "https://www.mediawiki.org/wiki/OOjs",
"repository": {
"type": "git",
"url": "https://gerrit.wikimedia.org/g/oojs/core"
},
"license": "MIT",
"main": "dist/oojs.js",
"files": [
"dist/",
"AUTHORS.txt",
"README.md",
"LICENSE-MIT"
],
"scripts": {
"authors": "git shortlog -se | sed 's/[[:space:]]*[0-9]*[[:space:]]//' | grep -vE 'jenkins|libraryupgrader' > AUTHORS.txt",
"build-dev": "grunt build-dev",
"build-release": "grunt build-release",
"doc": "jsdoc -c jsdoc.json",
"jenkins": "npm run test && karma start karma.conf.sauce.js && npm run doc",
"lint": "eslint --cache .",
"test": "npm run build-dev && karma start && qunit --require ./tests/setup-node tests/unit/ && npm run lint && npm run doc"
},
"devDependencies": {
"eslint-config-wikimedia": "0.28.2",
"grunt": "1.6.1",
"grunt-contrib-clean": "2.0.1",
"grunt-contrib-concat": "2.1.0",
"grunt-contrib-uglify": "5.2.2",
"jsdoc": "4.0.4",
"jsdoc-wmf-theme": "1.1.0",
"karma": "6.3.18",
"karma-chrome-launcher": "3.1.0",
"karma-coverage": "2.0.3",
"karma-firefox-launcher": "2.1.2",
"karma-qunit": "4.1.2",
"karma-remap-istanbul": "0.6.0",
"karma-sauce-launcher": "4.3.6",
"qunit": "2.20.0"
}
}