-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 1.04 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
{
"name": "donejs-vscode",
"version": "1.0.5",
"description": "Add a Visual Studio Code launch.json to your DoneJS app.",
"homepage": "https://github.com/icanjs/donejs-vscode",
"author": {
"name": "Marshall Thompson",
"email": "[email protected]",
"url": "https://github.com/icanjs"
},
"license": "MIT",
"main": "lib/",
"scripts": {
"test": "npm run jshint && npm run mocha",
"jshint": "jshint test/. default/index.js --config",
"mocha": "mocha test/ --timeout 120000",
"publish": "git push origin --tags && git push origin",
"release:patch": "npm version patch && npm publish",
"release:minor": "npm version minor && npm publish",
"release:major": "npm version major && npm publish"
},
"keywords": [
"donejs",
"vscode",
"ssr"
],
"dependencies": {
"lodash": "^4.15.0",
"yeoman-generator": "^0.20.3"
},
"devDependencies": {
"fs-extra": "^0.30.0",
"jshint": "^2.9.3",
"mocha": "^2.5.3",
"yeoman-assert": "^2.2.1",
"yeoman-test": "^1.5.0"
}
}