-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
44 lines (44 loc) · 1.15 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
{
"name": "route-lite",
"version": "0.3.0",
"description": "A lightweight, URL-free router for React applications for use in Chrome extensions or Electron apps",
"main": "build/index.js",
"scripts": {
"test": "jest",
"build": "babel index.js --out-dir build && webpack --config webpack.config.prod.js"
},
"repository": {
"type": "git",
"url": "https://github.com/aem/route-lite"
},
"keywords": [
"router",
"react",
"route",
"lite"
],
"author": "Adam Markon <amarkon895@gmail.com>",
"license": "ISC",
"peerDependencies": {
"react": "^15.6.2 || ^16.0.0"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-jest": "^21.2.0",
"babel-loader": "^7.1.2",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"jest": "^21.2.1",
"react": "^16.0.0",
"react-test-renderer": "^16.0.0",
"uglifyjs-webpack-plugin": "^0.4.6",
"webpack": "^3.6.0"
},
"dependencies": {
"@nuscout/eslint-config": "^0.2.1",
"@nuscout/prettier-config": "^0.1.2",
"eslint": "^4.19.1",
"prettier": "^1.11.1"
}
}