-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.26 KB
/
Copy pathpackage.json
File metadata and controls
46 lines (46 loc) · 1.26 KB
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
{
"name": "enum-object",
"version": "0.1.3",
"description": "Enum object type that allows to easily create enums from arrays or objects, and offers developer friendly interface.",
"main": "./dist/index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"clean": "rimraf dist",
"lint": "eslint src",
"lint:watch": "esw -w src",
"build": "babel src --out-dir dist",
"prepare": "npm run clean && npm run lint && npm run build"
},
"files": [
"dist",
"src"
],
"keywords": [
"enum",
"enums",
"type"
],
"repository": {
"type": "git",
"url": "git+https://github.com/devstark-com/enum-object.git"
},
"bugs": {
"url": "https://github.com/devstark-com/enum-object/issues"
},
"homepage": "https://github.com/devstark-com/enum-object#readme",
"author": "Refat <nobilix@gmail.com>",
"license": "MIT",
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-eslint": "^8.2.3",
"babel-preset-env": "^1.7.0",
"eslint": "^4.19.1",
"eslint-config-standard": "^11.0.0",
"eslint-plugin-import": "^2.12.0",
"eslint-plugin-node": "^6.0.1",
"eslint-plugin-promise": "^3.8.0",
"eslint-plugin-standard": "^3.1.0",
"eslint-watch": "^3.1.5",
"rimraf": "^2.6.2"
}
}