-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.47 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
{
"name": "classjoin",
"version": "0.2.1",
"description": "A bit simpler utility for conditionally joining classNames together",
"main": "./es5/index.js",
"module": "./es5-esm/index.js",
"types": "./es2015/index.d.ts",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"lint:scripts-project": "tslint -c tslint-type-check.json -p tsconfig.json --type-check",
"lint:scripts-other": "tslint \"*.js\"",
"lint": "npm run lint:scripts-project && npm run lint:scripts-other",
"build": "tsc",
"build:es5": "tsc --target es5 --outDir ./es5-esm",
"build:umd": "rollup -c",
"build:all": "npm run build && npm run build:es5 && npm run build:umd",
"minify": "uglifyjs ./es5/index.js -c -m -o ./es5/classjoin.min.js",
"prepublish": "npm run lint && npm run build:all && npm run minify"
},
"repository": {
"type": "git",
"url": "git+https://github.com/m18ru/classjoin.git"
},
"keywords": [
"react",
"css",
"classes",
"classname",
"classnames",
"classjoin",
"join",
"preact",
"simple",
"small",
"util",
"utility"
],
"author": "Andrey Avol Volynkin <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/m18ru/classjoin/issues"
},
"homepage": "https://github.com/m18ru/classjoin#readme",
"devDependencies": {
"rollup": "^0.41.6",
"tslint": "^5.2.0",
"tslint-config-m18": "^1.2.0",
"typescript": "^2.3.2",
"uglify-js": "^3.0.8"
}
}