-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
67 lines (67 loc) · 1.78 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
67
{
"name": "hooks-and-anchors",
"version": "1.1.1",
"description": "",
"license": "MIT",
"repository": "https://github.com/StevenBlack/hooks-and-anchors",
"author": {
"name": "Steven Black",
"email": "steveb@stevenblack.com",
"url": "http://stevenblack.com"
},
"bugs": {
"url": "https://github.com/stevenblack/hooks-and-anchors/issues"
},
"directories": {
"lib": "lib"
},
"engines": {
"node": ">= 0.10.0",
"npm": ">= 1.3.0"
},
"scripts": {
"prepublish": "npm run compile",
"publish": "git push origin && git push origin --tags",
"release:patch": "npm version patch && npm publish",
"release:minor": "npm version minor && npm publish",
"release:major": "npm version major && npm publish",
"compile": "rm -rf lib/ && babel -d lib/ src/ && rm -rf libtest/ && babel -d libtest/ test/",
"mocha": "npm run compile && mocha --opts mocha.opts",
"test": "npm run compile && mocha --opts mocha.opts",
"t": "npm run compile && mocha --compilers js:babel-core/register --timeout 10000 ./libtest/50-anchor.test.js"
},
"semistandard": {
"env": [
"mocha"
]
},
"files": [
"lib",
"test",
"src"
],
"main": "./lib/index.js",
"keywords": [
""
],
"dependencies": {
"babel-polyfill": "^6.16.0"
},
"devDependencies": {
"babel-cli": "^6.18.0",
"babel-core": "^6.18.0",
"babel-plugin-add-module-exports": "0.2.1",
"babel-preset-es2015": "^6.16.0",
"babel-preset-latest": "6.16.0",
"chai": "^3.5.0",
"debug": "^2.3.0",
"eslint": "^6.2.2",
"eslint-config-standard": "^6.2.0",
"eslint-if-supported": "1.0.1",
"eslint-plugin-promise": "^3.3.0",
"eslint-plugin-standard": "^2.0.1",
"jshint": "2.9.4",
"mocha": "^3.1.2",
"should": "^11.1.1"
}
}