-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
37 lines (37 loc) · 1.12 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
{
"name": "greenwood",
"private": true,
"description": "A modern and performant static site generator supporting Web Component based development.",
"repository": "https://github.com/ProjectEvergreen/greenwood",
"author": "Owen Buckley <[email protected]>",
"license": "MIT",
"main": "./packages/cli/src/index.js",
"workspaces": {
"packages": [
"packages/*",
"www"
]
},
"scripts": {
"lerna": "lerna",
"clean": "rimraf ./**/.greenwood/** && rimraf ./**/public/** && rimraf ./coverage",
"clean:deps": "rimraf **/node_modules/**",
"lint": "ls-lint && eslint \"*.js\" \"./packages/**/**/*.js\" \"./test/*.js\" \"./www/**/**/*.js\"",
"build": "node . build",
"serve": "node . serve",
"develop": "node . develop",
"test": "export BROWSERSLIST_IGNORE_OLD_DATA=true && nyc mocha",
"test:tdd": "yarn test --watch"
},
"devDependencies": {
"@ls-lint/ls-lint": "^1.9.2",
"chai": "^4.2.0",
"eslint": "^6.8.0",
"glob-promise": "^3.4.0",
"jsdom": "^14.0.0",
"lerna": "^3.16.4",
"mocha": "^6.1.4",
"nyc": "^14.0.0",
"rimraf": "^2.6.3"
}
}