-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.34 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
{
"name": "rich-enum",
"version": "0.0.0-semantically-released",
"description":
"A implementation of enum like feature, but more powerful and extensible.",
"main": "dist/rich-enum.cjs.js",
"module": "dist/rich-enum.esm.js",
"engines": {
"node": "> 4",
"npm": "> 3"
},
"scripts": {
"add-contributor": "kcd-scripts contributors add",
"build": "kcd-scripts build --bundle",
"lint": "kcd-scripts lint",
"test": "kcd-scripts test",
"test:update": "npm test -- --updateSnapshot --coverage",
"validate": "kcd-scripts validate",
"setup": "npm install && npm run validate -s",
"precommit": "kcd-scripts precommit"
},
"files": ["dist"],
"keywords": [],
"author":
"Jianhua Cheng <[email protected]> (https://chengjianhua.github.io)",
"license": "MIT",
"dependencies": {
"invariant": "^2.2.4",
"lodash": "^4.17.5",
"object-assign": "^4.1.1"
},
"devDependencies": {
"kcd-scripts": "^0.36.1"
},
"eslintConfig": {
"extends": "./node_modules/kcd-scripts/eslint.js"
},
"eslintIgnore": ["node_modules", "coverage", "dist"],
"repository": {
"type": "git",
"url": "https://github.com/chengjianhua/rich-enum.git"
},
"bugs": {
"url": "https://github.com/chengjianhua/rich-enum/issues"
},
"homepage": "https://github.com/chengjianhua/rich-enum#readme"
}