-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
49 lines (49 loc) · 1.18 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
{
"name": "bas",
"version": "0.1.0",
"description": "Behaviour Assertion Sheets: CSS-like declarative syntax for client-side integration testing and quality assurance.",
"main": "lib/index.js",
"scripts": {
"test": "node_modules/.bin/mocha -R spec -t 10000",
"coverage": "test/coverage.sh"
},
"bin": {
"bas": "lib/cli.js"
},
"repository": "https://github.com/cgiffard/Behaviour-Assertion-Sheets.git",
"keywords": [
"test",
"css",
"behaviour",
"integration",
"testing",
"declarative",
"client-side",
"crawl",
"crawler",
"assertion",
"sheets",
"bas"
],
"author": "Christopher Giffard <[email protected]>",
"license": "BSD-2-Clause",
"devDependencies": {
"chai": "^3.4.1",
"istanbul": "^0.4.1",
"jshint": "^2.9.1-rc1",
"mocha": "^2.3.4",
"mocha-istanbul": "~0.2.0"
},
"dependencies": {
"async": "^1.5.0",
"cheerio": "^0.19.0",
"colors": "^1.1.2",
"commander": "^2.9.0",
"csstree": "cgiffard/CSSTree#inline-comments",
"iconv-lite": "^0.4.13",
"request": "^2.67.0",
"simplecrawler": "^0.5.4",
"text-statistics": "^0.1.1",
"yoyaku": "0.0.12"
}
}