-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 960 Bytes
/
package.json
File metadata and controls
46 lines (46 loc) · 960 Bytes
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": "identifierfy",
"version": "2.0.0",
"description": "Rewrites an identifier string so its valid according to ES2015",
"main": "index.js",
"engines": {
"node": ">= 6"
},
"files": [
"index.js"
],
"scripts": {
"lint": "as-i-preach",
"test": "as-i-preach && nyc ava"
},
"repository": {
"type": "git",
"url": "git+https://github.com/novemberborn/identifierfy.git"
},
"keywords": [
"es6",
"es2015",
"identifier"
],
"author": "Mark Wubben (https://novemberborn.net/)",
"license": "ISC",
"bugs": {
"url": "https://github.com/novemberborn/identifierfy/issues"
},
"homepage": "https://github.com/novemberborn/identifierfy#readme",
"devDependencies": {
"@novemberborn/as-i-preach": "^11.0.0",
"ava": "^1.0.0-beta.8",
"nyc": "^13.0.1"
},
"dependencies": {
"esutils": "^2.0.2"
},
"nyc": {
"reporter": [
"lcov",
"html",
"text"
]
}
}