-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
64 lines (64 loc) · 2.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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
{
"name": "@form8ion/babel-preset",
"description": "Shareable babel preset for the organization",
"license": "MIT",
"version": "0.0.0-semantically-released",
"author": "Matt Travi <npm@travi.org> (https://matt.travi.org/)",
"repository": "form8ion/babel-preset",
"bugs": "https://github.com/form8ion/babel-preset/issues",
"homepage": "https://npm.im/@form8ion/babel-preset",
"main": "lib/index.cjs.js",
"module": "lib/index.es.js",
"sideEffects": false,
"scripts": {
"test": "npm-run-all --print-label --parallel lint:* --parallel test:*",
"test:unit": "cross-env NODE_ENV=test c8 run-s test:unit:base",
"test:unit:base": "DEBUG=any mocha src/**/*-test.js",
"lint:js": "eslint . --cache",
"lint:md": "remark . --frail",
"lint:sensitive": "ban",
"clean": "rimraf ./lib",
"prebuild": "run-s clean",
"build": "npm-run-all --print-label --parallel build:*",
"build:js": "rollup --config",
"watch": "run-s 'build:js -- --watch'",
"prepack": "run-s build",
"prepare": "husky install"
},
"files": [
"lib/"
],
"publishConfig": {
"access": "public",
"provenance": true
},
"dependencies": {
"@babel/core": "7.26.0",
"@babel/plugin-proposal-class-properties": "7.18.6",
"@babel/plugin-proposal-object-rest-spread": "7.20.7",
"@babel/preset-env": "7.26.0",
"@babel/preset-react": "7.25.9",
"babel-plugin-inline-react-svg": "2.0.2"
},
"devDependencies": {
"@babel/register": "7.25.9",
"@form8ion/commitlint-config": "2.0.0",
"@form8ion/eslint-config": "7.0.12",
"@form8ion/eslint-config-mocha": "3.0.6",
"@form8ion/remark-lint-preset": "6.0.5",
"@travi/any": "3.1.2",
"ban-sensitive-files": "1.10.6",
"c8": "10.1.2",
"chai": "4.5.0",
"cross-env": "7.0.3",
"cz-conventional-changelog": "3.3.0",
"husky": "9.1.6",
"mocha": "10.8.2",
"npm-run-all2": "7.0.1",
"remark-cli": "12.0.1",
"rimraf": "6.0.1",
"rollup": "4.25.0",
"rollup-plugin-auto-external": "2.0.0",
"sinon": "19.0.2"
}
}