-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
28 lines (28 loc) · 923 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
{
"name": "dc-to-ckc",
"version": "1.0.0",
"description": "Convert DataCamp Exercises to CKCode exercises",
"main": "index.js",
"scripts": {
"dev": "npm run dev:clean && node index.js convert tests/pages tests/datacamp tests/converted",
"dev:default": "npm run dev:clean && node index.js tests/pages tests/datacamp tests/converted",
"dev:in-place": "cp -R tests/pages tests/in-place && node index.js convert tests/in-place tests/datacamp tests/in-place",
"dev:clean": "rimraf tests/converted tests/in-place",
"test": "echo \"Error: no test specified\" && exit 1"
},
"bin": {
"dc-to-ckc": "index.js"
},
"author": "Adam Blake <[email protected]>",
"license": "UNLICENSED",
"dependencies": {
"dedent": "^0.7.0",
"jsdom": "^17.0.0",
"yargs": "^17.1.1"
},
"devDependencies": {
"@types/yargs": "^17.0.2",
"prettier": "^2.3.2",
"rimraf": "^3.0.2"
}
}