-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
72 lines (72 loc) · 1.81 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
65
66
67
68
69
70
71
72
{
"name": "bemmed",
"version": "1.6.2",
"description": "BEM class name composer.",
"exports": {
".": {
"import": {
"types": "./lib/esm/types/index.d.ts",
"default": "./lib/esm/index.mjs"
},
"require": {
"types": "./lib/cjs/types/index.d.ts",
"default": "./lib/cjs/index.js"
}
}
},
"types": "./lib/cjs/types/index.d.ts",
"main": "./lib/cjs/index.js",
"files": [
"lib/**/*"
],
"scripts": {
"clean": "rm -rf ./lib",
"build": "npm run clean && npm run build:esm && npm run build:cjs",
"build:esm": "tsc -p ./configs/tsconfig.esm.json && mv lib/esm/index.js lib/esm/index.mjs && mv lib/esm/proptypes.js lib/esm/proptypes.mjs",
"build:cjs": "tsc -p ./configs/tsconfig.cjs.json",
"lint": "eslint .",
"test": "npm run test:unit",
"test:unit": "nyc mocha",
"coverage": "nyc report --reporter=text-lcov | coveralls",
"prepack": "npm run build"
},
"release": {
"branches": [
"main"
]
},
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/frontendr/bemmed.git"
},
"keywords": [
"bem",
"css",
"class",
"composer",
"block",
"element",
"modifier"
],
"sideEffects": false,
"author": "Johan Arensman <info@frontendr.com>",
"homepage": "https://github.com/frontendr/bemmed",
"bugs": "https://github.com/frontendr/bemmed/issues",
"license": "MIT",
"devDependencies": {
"@types/mocha": "^10.0.7",
"@typescript-eslint/eslint-plugin": "^8.0.1",
"@typescript-eslint/parser": "^8.0.1",
"coveralls": "^3.1.1",
"eslint": "^9.9.0",
"eslint-config-prettier": "^9.1.0",
"mocha": "^10.7.0",
"nyc": "^17.0.0",
"prettier": "^3.3.3",
"ts-node": "^10.9.2",
"typescript": "^5.5.4"
}
}