-
Notifications
You must be signed in to change notification settings - Fork 31
/
Copy pathpackage.json
49 lines (49 loc) · 1.28 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
{
"name": "react-anchor-link-smooth-scroll",
"version": "1.0.11",
"description": "React component for anchor links using the smoothscroll polyfill.",
"repository": {
"type": "git",
"url": "git+https://github.com/mauricevancooten/react-anchor-link-smooth-scroll.git"
},
"keywords": [
"scroll",
"react",
"smooth",
"component",
"smooth-scroll",
"polyfill",
"javascript"
],
"author": "Maurice van Cooten",
"license": "MIT",
"bugs": {
"url": "https://github.com/mauricevancooten/react-anchor-link-smooth-scroll/issues"
},
"homepage": "https://github.com/mauricevancooten/react-anchor-link-smooth-scroll#readme",
"devDependencies": {
"babel-core": "^6.26.3",
"babel-loader": "^7.1.5",
"babel-minify-webpack-plugin": "^0.2.0",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-env": "^1.7.0",
"babel-preset-react": "^6.24.1",
"react": "^15.6.2",
"smoothscroll-polyfill": "^0.4.3",
"webpack": "^3.12.0"
},
"babel": {
"presets": [
"react",
"env"
],
"plugins": [
"transform-object-rest-spread"
]
},
"main": "lib/anchor-link.js",
"scripts": {
"compile": "NODE_ENV='production' webpack",
"compile-watch": "NODE_ENV='development' webpack -w"
}
}