-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 2.26 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 2.26 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
58
59
60
61
{
"name": "@textkernel/bem",
"buildParams": {
"libraryName": "bem"
},
"version": "0.2.4",
"description": "Automatically generates list of classnames based on its props/state for your React component.",
"author": "Alexander I. Antipin <antipin@textkernel.nl>",
"license": "MIT",
"homepage": "https://github.com/textkernel/bem#readme",
"repository": {
"type": "git",
"url": "git@github.com:textkernel/bem.git"
},
"bugs": {
"url": "https://github.com/textkernel/bem/issues"
},
"main": "dist/bem.js",
"types": "dist/dts/index.d.ts",
"scripts": {
"build": "webpack --config ./scripts/build/webpack.config.ts",
"test": "jest --config scripts/test/jest.config.js --testPathIgnorePatterns dist.spec.ts",
"test-dist": "npm run build && jest --config scripts/test/jest.config.js --coverage=false dist.spec.ts",
"lint": "eslint --config scripts/lint/.eslintrc.js --ignore-path scripts/lint/.eslintignore --ext .ts,.tsx,.js .",
"prepublishOnly": "npm test && npm run lint && npm run build",
"coveralls": "cat ./coverage/lcov.info | node node_modules/.bin/coveralls",
"release": "standard-version",
"publish-release": "npm publish --access=public && git push --no-verify --follow-tags origin master"
},
"files": [
"/dist"
],
"husky": {
"hooks": {
"pre-commit": "npm run lint && npm run test",
"pre-push": "npm run lint && npm run test && npm run build && npm run test-dist"
}
},
"devDependencies": {
"@types/jest": "24.0.21",
"@types/node": "12.12.5",
"@types/webpack": "4.39.8",
"@typescript-eslint/eslint-plugin": "2.6.1",
"@typescript-eslint/parser": "2.6.1",
"coveralls": "3.0.7",
"eslint": "6.6.0",
"eslint-config-airbnb": "18.0.1",
"eslint-plugin-import": "2.18.2",
"eslint-plugin-jest": "23.0.2",
"eslint-plugin-jsx-a11y": "6.2.3",
"husky": "3.0.9",
"jest": "24.9.0",
"standard-version": "7.0.0",
"ts-jest": "24.1.0",
"ts-loader": "6.2.1",
"ts-node": "8.4.1",
"typescript": "3.6.4",
"webpack": "4.41.2",
"webpack-cli": "3.3.10"
}
}