-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
47 lines (47 loc) · 1.03 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
{
"name": "awoo",
"version": "4.1.0",
"description": "small site generator",
"main": "lib/awoo.js",
"repository": "git@github.com:awoojs/awoo.git",
"author": "olivia <olivia@fastmail.com>",
"license": "AGPL-3.0+",
"scripts": {
"lint": "standard | snazzy",
"ava": "unset DEBUG; ava --serial",
"ava:watch": "unset DEBUG; ava -w",
"test": "npm run lint && npm run ava",
"update-coc": "weallbehave -o . && git add CODE_OF_CONDUCT.md && git commit -m 'update code of conduct'",
"deploy": "np"
},
"files": [
"lib",
"index.js"
],
"ava": {
"source": [
"lib/**/*.js"
],
"files": [
"test/*.js"
]
},
"dependencies": {
"debug": "4.0.1",
"deepmerge": "2.2.0",
"is-text-path": "1.0.1",
"mkdirp": "0.5.1",
"to-vfile": "5.0.1",
"trough": "1.0.3",
"walk": "2.3.14"
},
"devDependencies": {
"ava": "0.25.0",
"np": "3.0.2",
"rimraf": "2.6.2",
"snazzy": "8.0.0",
"standard": "12.0.1",
"vfile": "2.3.0",
"weallbehave": "1.2.0"
}
}