-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.85 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.85 KB
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
50
51
52
53
54
55
56
57
{
"private": true,
"name": "@radpack/root",
"version": "0.0.0",
"workspaces": [
"packages/*",
"examples/apps/*",
"examples/clients/*",
"examples/libs/*"
],
"scripts": {
"docs": "cd docs && bundle exec jekyll serve --baseurl ''",
"docs:install": "cd docs && LDFLAGS=\"-L/usr/local/opt/libffi/lib\" PKG_CONFIG_PATH=\"/usr/local/opt/libffi/lib/pkgconfig\" bundle install",
"docs:upgrade": "cd docs && bundle update github-pages",
"build": "lerna run build",
"test": "npm run lint && npm run coverage && npm run integration",
"lint": "eslint \"./configs\" \"./@(examples|packages)/**/src/**\" --fix",
"unit": "ava -v \"./@(examples|packages)/**/test/unit/**/*.test.js\"",
"integration": "ava -v \"./@(examples|packages)/**/test/integration/**/*.test.js\"",
"coverage": "nyc --reporter=html --reporter=text npm run unit",
"clean": "node ./scripts/clean.js",
"update": "node ./scripts/update.js",
"reset": "npm run clean && npm ci && npm run update",
"prepublishOnly": "npm run build && npm run test"
},
"devDependencies": {
"@babel/cli": "^7.27.2",
"@babel/core": "^7.27.4",
"@babel/eslint-parser": "^7.27.5",
"@babel/preset-env": "^7.27.2",
"@babel/register": "^7.27.1",
"@rollup/plugin-babel": "^5.3.1",
"@rollup/plugin-commonjs": "^22.0.2",
"@rollup/plugin-node-resolve": "^13.3.0",
"acorn": "^8.15.0",
"ava": "^1.4.1",
"cross-spawn": "^7.0.6",
"eslint": "^7.32.0",
"eslint-config-godaddy": "^6.1.0",
"find-up": "^5.0.0",
"glob": "^7.2.3",
"lerna": "^5.6.2",
"ninos": "^3.0.0",
"nyc": "^15.1.0",
"proxyquire": "^2.1.3",
"rimraf": "^3.0.2",
"rollup": "^2.79.2",
"rollup-plugin-terser": "^7.0.2",
"webpack": "^5.99.9"
},
"ava": {
"require": [
"./configs/test/register.js"
],
"timeout": "1m"
}
}