-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
42 lines (41 loc) · 983 Bytes
/
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
{
"name": "qunit2-migrator",
"description": "Migration tool for creating QUnit test files which conform to QUnit 2.x API specifications.",
"version": "0.8.0",
"author": "Kevin Partington",
"bin": "./src/main.js",
"dependencies": {
"deepcopy": "^0.5.0",
"extend": "^3.0.0",
"minimist": "^1.1.1",
"recast": "^0.10.2",
"traverse": "^0.6.6",
"recursive-readdir": "^1.2.1"
},
"devDependencies": {
"eslint": "^1.1.0",
"eslint-plugin-jasmine": "^1.3.0",
"grunt": "^0.4.5",
"grunt-jasmine-nodejs": "^1.4.0"
},
"files": [
"src/helpers",
"src/main.js",
"src/transform.js",
"src/transformers"
],
"keywords": [
"qunit",
"qunit-2.0"
],
"license": "MIT",
"main": "src/main.js",
"repository": {
"type": "git",
"url": "https://github.com/platinumazure/qunit2-migrator.git"
},
"scripts": {
"test": "npm run eslint && grunt",
"eslint": "node ./node_modules/eslint/bin/eslint ."
}
}