-
Notifications
You must be signed in to change notification settings - Fork 0
/
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": "@pledgeit/site-mapper",
"version": "1.0.3",
"description": "A simple utility for programmatically generating navigations based on a sitemap tree",
"keywords": [
"breadcrumb",
"sitemap",
"subnav",
"navigation"
],
"main": "lib/index.js",
"scripts": {
"transpile": "rm -rf lib/ && babel src --out-dir lib",
"test": "mocha --compilers js:babel-register test/",
"prepublish": "npm run transpile"
},
"author": {
"name": "Pledge It",
"email": "[email protected]",
"url": "https://pledgeit.org"
},
"licenses": [
{
"type": "MIT",
"url": "https://github.com/PledgeIt/site-mapper/blob/master/license.md"
}
],
"devDependencies": {
"babel-cli": "^6.14.0",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-preset-latest": "^6.14.0",
"babel-register": "^6.14.0",
"chai": "^3.5.0",
"mocha": "^3.0.2",
"sinon": "^1.17.5",
"sinon-chai": "^2.8.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/PledgeIt/site-mapper.git"
},
"bugs": {
"url": "https://github.com/PledgeIt/site-mapper/issues"
}
}