forked from qunitjs/qunit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
104 lines (104 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
{
"name": "qunit",
"title": "QUnit",
"description": "An easy-to-use JavaScript Unit Testing framework.",
"version": "2.8.1-pre",
"homepage": "https://qunitjs.com",
"author": {
"name": "jQuery Foundation and other contributors",
"url": "https://github.com/qunitjs/qunit/blob/master/AUTHORS.txt"
},
"repository": {
"type": "git",
"url": "git://github.com/qunitjs/qunit.git"
},
"keywords": [
"testing",
"unit",
"jquery"
],
"bugs": {
"url": "https://github.com/qunitjs/qunit/issues"
},
"license": "MIT",
"bin": {
"qunit": "bin/qunit"
},
"files": [
"bin/",
"qunit/qunit.js",
"qunit/qunit.css",
"LICENSE.txt"
],
"dependencies": {
"commander": "2.12.2",
"exists-stat": "1.0.0",
"findup-sync": "2.0.0",
"js-reporters": "1.2.1",
"resolve": "1.5.0",
"sane": "^4.0.0",
"walk-sync": "0.3.2"
},
"devDependencies": {
"async": "2.6.0",
"babel-core": "6.26.0",
"babel-plugin-external-helpers": "6.22.0",
"babel-preset-env": "1.6.1",
"co": "4.6.0",
"commitplease": "3.1.0",
"es6-promise": "^4.2.5",
"eslint-config-jquery": "1.0.1",
"eslint-plugin-html": "4.0.1",
"eslint-plugin-qunit": "3.2.0",
"execa": "0.8.0",
"fixturify": "0.3.4",
"fs-extra": "5.0.0",
"grunt": "1.0.3",
"grunt-cli": "1.2.0",
"grunt-concurrent": "2.3.1",
"grunt-contrib-connect": "1.0.2",
"grunt-contrib-copy": "1.0.0",
"grunt-contrib-qunit": "3.0.1",
"grunt-contrib-watch": "1.1.0",
"grunt-coveralls": "2.0.0",
"grunt-eslint": "20.1.0",
"grunt-git-authors": "3.2.0",
"grunt-istanbul": "0.8.0",
"grunt-rollup": "8.2.0",
"grunt-search": "0.1.8",
"load-grunt-tasks": "3.5.2",
"npm-reporter": "file:./test/cli/fixtures/npm-reporter",
"proxyquire": "1.8.0",
"requirejs": "2.3.5",
"rollup-plugin-babel": "3.0.2",
"rollup-plugin-node-resolve": "^3.4.0",
"semver": "5.4.1"
},
"scripts": {
"build": "grunt build",
"dev": "grunt watch",
"test": "grunt",
"coverage": "grunt coverage",
"test:cli": "grunt build && npm link && qunit test/cli/*.js"
},
"commitplease": {
"components": [
"All",
"Assert",
"Build",
"CLI",
"CSS",
"Core",
"Docs",
"Dump",
"HTML Reporter",
"Readme",
"Test",
"Tests"
]
},
"main": "qunit/qunit.js",
"engines": {
"node": ">=4"
}
}