-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
66 lines (66 loc) · 1.63 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
59
60
61
62
63
64
65
66
{
"name": "dot-wild",
"version": "3.0.1",
"description": "Use powerful dot notation (dot path + wildcard) to manipulate properties of JSON",
"main": "lib/index.js",
"typings": "lib/index.d.ts",
"scripts": {
"build": "tsc",
"watch": "npm run build -- -w & npm run test:watch",
"test": "npm run test:lint && npm run test:unit",
"test:lint": "tslint -c tslint.json 'src/**/*.ts' 'test/**/*.ts'",
"test:unit": "mocha --compilers ts:ts-node/register,tsx:ts-node/register 'test/**/*.spec.ts'",
"test:watch": "npm run test:unit -- -w",
"docs": "typedoc --excludeNotExported --excludePrivate --out docs/ src/ && touch docs/.nojekyll",
"prepublish": "npm run build"
},
"engines": {
"node": ">=4.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tsuyoshiwada/dot-wild.git"
},
"keywords": [
"obj",
"object",
"arr",
"array",
"prop",
"property",
"dot",
"dot-notation",
"path",
"get",
"access",
"notation",
"dotty",
"typescript",
"ts"
],
"author": "tsuyoshiwada",
"license": "MIT",
"bugs": {
"url": "https://github.com/tsuyoshiwada/dot-wild/issues"
},
"homepage": "https://github.com/tsuyoshiwada/dot-wild#readme",
"devDependencies": {
"@types/mocha": "^2.2.41",
"@types/node": "^8.0.7",
"@types/power-assert": "^1.4.29",
"mocha": "^3.4.2",
"power-assert": "^1.4.4",
"ts-node": "^3.1.0",
"tslint": "^5.4.3",
"typedoc": "^0.7.1",
"typescript": "^2.4.1"
},
"dependencies": {
"clone-deep": "^2.0.1",
"is-plain-object": "^2.0.3"
},
"files": [
"lib",
"test"
]
}