-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 1.03 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
{
"name": "sep-prop",
"version": "1.0.0",
"description": "Get, set, or remove a property from a nested object using a separator of your choosing",
"license": "MIT",
"main": "index.js",
"repository": {
"type": "git",
"url": "https://github.com/tiaanduplessis/sep-prop.git"
},
"homepage": "https://github.com/tiaanduplessis/sep-prop",
"bugs": "https://github.com/tiaanduplessis/sep-prop/issues",
"author": {
"name": "Tiaan",
"email": "[email protected]",
"url": "tiaanduplessis.co.za"
},
"scripts": {
"start": "npm run dev",
"pretest": "npm run lint:fix",
"test": "jest --env=node",
"test:watch": "npm test -- --watch",
"coverage": "npm test -- --coverage",
"lint": "standard --verbose",
"lint:fix": "standard --fix --verbose",
"precommit": "npm test"
},
"keywords": [
"sep",
"object",
"property",
"separator",
"sep-prop"
],
"dependencies": {},
"devDependencies": {
"husky": "^0.13.2",
"jest": "^19.0.2",
"standard": "^9.0.0"
}
}