-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
62 lines (62 loc) · 1.88 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
{
"name": "@dsmjs/babel-preset",
"description": "Shareable babel preset for the organization",
"license": "MIT",
"version": "0.0.0-semantically-released",
"author": "dsmJS <[email protected]> (https://dsmjs.com)",
"repository": "dsmjs/babel-preset",
"bugs": "https://github.com/dsmjs/babel-preset/issues",
"homepage": "https://npm.im/@dsmjs/babel-preset",
"main": "lib/index.cjs.js",
"module": "lib/index.es.js",
"sideEffects": false,
"scripts": {
"pretest": "run-s build",
"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",
"lint:publish": "publint"
},
"files": [
"lib/"
],
"publishConfig": {
"access": "public",
"provenance": true
},
"dependencies": {
"@form8ion/babel-preset": "1.6.139"
},
"devDependencies": {
"@babel/register": "^7.6.2",
"@dsmjs/eslint-config": "1.0.118",
"@dsmjs/eslint-config-mocha": "1.0.30",
"@form8ion/remark-lint-preset": "6.0.5",
"@travi/any": "^3.0.0",
"ban-sensitive-files": "^1.9.2",
"c8": "10.1.2",
"chai": "^4.2.0",
"commitlint-config-dsmjs": "1.0.51",
"cross-env": "7.0.3",
"cz-conventional-changelog": "^3.0.2",
"husky": "9.1.6",
"mocha": "^10.0.0",
"npm-run-all": "^4.1.5",
"publint": "0.2.12",
"remark-cli": "^12.0.0",
"rimraf": "^6.0.0",
"rollup": "^4.0.0",
"rollup-plugin-auto-external": "^2.0.0",
"sinon": "^19.0.0"
}
}