-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
45 lines (45 loc) · 1.12 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
{
"name": "js-dot",
"version": "1.0.1",
"description": "JavaScript dot notation handler",
"main": "lib/js-dot.js",
"typings": "dist/js-dot",
"scripts": {
"test": "npm run build && mocha",
"build:types": "tsc -b src/tsconfig-amd.json",
"build:lib": "tsc -b src",
"build:dist": "browserify lib/js-dot.js > dist/js-dot.js",
"build:uglify": "uglifyjs dist/js-dot.js -c -m -o dist/js-dot.min.js",
"build": "run-s -s build:**",
"prepublishOnly": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/elcharitas/js-dot.git"
},
"keywords": [
"js",
"dot",
"js-dot",
"notation",
"object",
"json"
],
"author": {
"name": "Jonathan Irhodia",
"email": "[email protected]",
"url": "https://elcharitas.com.ng"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/elcharitas/js-dot/issues"
},
"homepage": "https://github.com/elcharitas/js-dot#readme",
"devDependencies": {
"typescript": "^4.1.0",
"browserify": "^17.0.0",
"uglify-js": "^3.11.0",
"npm-run-all": "^4.1.0",
"mocha": "^8.2.1"
}
}