-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
47 lines (47 loc) · 1.29 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
{
"version": "0.6.2",
"name": "damon",
"private": false,
"description": "Bot navigating urls and doing tasks.",
"author": "Yoann Moinet <[email protected]>",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/damonjs/damon.git"
},
"bugs": {
"url": "https://github.com/damonjs/damon/issues"
},
"homepage": "https://github.com/damonjs/damon",
"main": "src/index.js",
"scripts": {
"preversion": "npm test",
"postversion": "npm run changelog",
"pretest": "npm run format && npm run lint",
"test": "mocha ./test",
"format": "jscs ./src/ ./src/bots && npm run formatTests",
"formatTests": "jscs -c ./test/.jscsrc ./test/",
"lint": "eslint ./src/ ./test/ ./src/bots",
"toc": "markdown-toc -i README.md",
"changelog": "node ./bin/changelog.js"
},
"dependencies": {
"casperjs": "yoannmoinet/casperjs#a45c64d",
"chalk": "^1.1.1",
"damon-reporter": "0.1.x",
"expect.js": "^0.3.1",
"fs-extra": "^0.30.0",
"glob": "^7.0.5",
"node-uuid": "^1.4.3",
"slice-ansi": "0.0.4",
"strip-ansi": "^3.0.0",
"underscore": "^1.8.3"
},
"devDependencies": {
"conventional-changelog": "^1.1.0",
"eslint": "^3.1.1",
"jscs": "^3.0.7",
"markdown-toc": "^0.12.16",
"mocha": "^2.3.0"
}
}