-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
50 lines (50 loc) · 1.42 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
{
"name": "@jahed/bem",
"version": "1.2.12",
"description": "Functions for using BEM in CSS.",
"main": "lib/index.js",
"module": "es/index.js",
"types": "lib/index.d.ts",
"files": [
"lib",
"es",
"docs"
],
"sideEffects": false,
"author": "Jahed Ahmed",
"license": "MIT",
"repository": "https://github.com/jahed/bem",
"scripts": {
"lint": "tslint --project tsconfig.json",
"test": "jest",
"build:lib": "rimraf lib && tsc",
"build:es": "rimraf es && tsc --outDir ./es/ --target es6 --module es6",
"build:docs": "rimraf docs && typedoc --theme default --out docs --mode file",
"push:git": "git push --follow-tags",
"push:docs": "bash -i ./publish-docs.sh",
"ready": "yarn lint && yarn test && yarn build:lib && yarn build:es && yarn build:docs",
"deploy": "yarn ready && yarn publish && yarn push:git && yarn push:docs",
"deps": "yarn upgrade-interactive --latest && yarn upgrade && git add yarn.lock '*package.json' && git commit -m 'build(deps): upgrade dependencies'"
},
"devDependencies": {
"@types/jest": "^26.0.13",
"@types/node": "^12.6.2",
"jest": "26.4.2",
"rimraf": "3.0.2",
"ts-jest": "26.3.0",
"tslint": "6.1.3",
"tslint-config-standard": "9.0.0",
"typedoc": "0.19.1",
"typescript": "4.0.2"
},
"keywords": [
"bem",
"css",
"class",
"classnames",
"utils",
"utilities",
"generator",
"modules"
]
}