-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
59 lines (59 loc) · 1.44 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
{
"name": "nmsp",
"version": "2.0.0",
"description": "A tiny utility to create, manage, and extend your namespaces in the browser and Node.js.",
"author": "Ryan Fitzer",
"license": "MIT",
"main": "index.js",
"unpkg": "./dist/nmsp.min.js",
"scripts": {
"build": "npm run toc && rm -rf ./dist && grunt --verbose",
"checkpkg": "npm pack && tar -xvzf *.tgz && rm -rf package *.tgz",
"prepublishOnly": "npm run build",
"test": "istanbul cover --report lcovonly ./node_modules/mocha/bin/_mocha -- -R spec && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js && rm -rf ./coverage",
"toc": "doctoc README.md --github"
},
"engines": {
"node": ">=4.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/ryanfitzer/nmsp.git"
},
"keywords": [
"at path",
"extend",
"extend objects",
"from path",
"merge",
"merge objects",
"ns",
"nsjs",
"namespace",
"namespacejs",
"namespacer",
"namespacerjs",
"namespaced",
"namespacedjs",
"pojo",
"objects"
],
"files": [
"dist",
"LICENSE",
"README.md",
"index.js"
],
"devDependencies": {
"coveralls": "^3.0.2",
"doctoc": "^2.0.0",
"eslint": "^8.21.0",
"grunt": "^1.0.3",
"grunt-contrib-copy": "^1.0.0",
"grunt-contrib-uglify": "^5.0.0",
"istanbul": "^0.4.5",
"mocha": "^10.0.0",
"mocha-lcov-reporter": "^1.2.0"
},
"dependencies": {}
}