-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.66 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
{
"name": "@cyclic/util-combine-class-names",
"version": "3.0.0",
"author": "Frederik Krautwald",
"description": "Utility to combine class names",
"license": "MIT",
"bugs": "https://github.com/CyclicMaterials/util-combine-class-names/issues",
"repository": {
"type": "git",
"url": "https://github.com/CyclicMaterials/util-combine-class-names"
},
"keywords": [
"class names",
"utility"
],
"directories": {
"doc": "./doc",
"lib": "./lib"
},
"files": [
"lib/",
"src/"
],
"main": "./lib/index.js",
"browserify": {
"transform": [
"babelify"
]
},
"devDependencies": {
"babel": "5.8.21",
"babelify": "6.3.0",
"cli-release": "1.0.3",
"eslint": "1.0.0",
"eslint-config-cycle": "3.0.0",
"eslint-plugin-cycle": "1.0.1",
"eslint-plugin-no-class": "0.1.0",
"faucet": "0.0.1",
"markdox": "0.1.10",
"tape": "4.2.1",
"validate-commit-message": "3.0.1"
},
"scripts": {
"lint": "eslint ./src/*.js",
"test": "npm run lint && babel-node ./src/*.test.js | faucet",
"deps": "npm install && validate-commit-msg",
"start": "npm run deps",
"predoc": "rm -rf doc/ && mkdir -p doc",
"doc": "node ./scripts/make-api-doc.js",
"postcompile": "find lib/ -type f -name '*.test.js' -exec rm {} +",
"precompile": "rm -rf lib/ && mkdir -p lib",
"compile": "babel -d lib/ src/",
"prepublish": "npm run compile",
"patch": "git checkout master && release patch && npm publish --access=public",
"minor": "git checkout master && release minor && npm publish --access=public",
"major": "git checkout master && release major && npm publish --access=public"
}
}