-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
56 lines (56 loc) · 1.62 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
{
"name": "@redneckz/react-bem-helper",
"version": "2.0.4",
"author": "Alexander Alexandrov",
"description": "BEM library for React",
"keywords": [
"BEM",
"react"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/redneckz/react-bem-helper"
},
"bugs": {
"url": "https://github.com/redneckz/react-bem-helper/issues"
},
"homepage": "https://github.com/redneckz/react-bem-helper",
"main": "lib/index.js",
"types": "./bem.d.ts",
"module": "es/index.js",
"browser": "dist/index.min.js",
"files": [
"src",
"lib",
"es",
"dist",
"bem.d.ts"
],
"peerDependencies": {
"react": "^16.8.0-0"
},
"dependencies": {
"classnames": "~2.2.6"
},
"devDependencies": {
"@redneckz/react-lib-config": "0.0.7",
"enzyme": "~3.10.0",
"flow-bin": "~0.102.0"
},
"scripts": {
"prepublish": "npm run build",
"prebuild": "npm run clean && npm run eslint && npm run jest",
"build": "npm run build:commonjs && npm run build:es && npm run build:umd && npm run build:umd:min",
"build:commonjs": "cross-env NODE_ENV=cjs react-lib-build",
"build:es": "cross-env NODE_ENV=es react-lib-build",
"build:umd": "cross-env NODE_ENV=development react-lib-build",
"build:umd:min": "cross-env NODE_ENV=production react-lib-build",
"clean": "rimraf lib es dist coverage",
"pretest": "npm run eslint",
"test": "npm run jest && npm run coveralls",
"eslint": "eslint \"src/**/*.js?(x)\" --cache --cache-location \"./.cache\"",
"jest": "cross-env NODE_ENV=test jest",
"coveralls": "coveralls < coverage/lcov.info"
}
}