-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
49 lines (49 loc) · 1.17 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-3h",
"version": "1.0.6",
"description": "Simple react implementation i wrote in 3 hours.",
"main": "dist/index.js",
"scripts": {
"build": "npm run eslint && webpack --config webpack.config.js",
"eslint": "eslint src",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mrharel/react-3h.git"
},
"keywords": [
"react"
],
"author": "Amir Harel <[email protected]>",
"license": "ISC",
"bugs": {
"url": "https://github.com/mrharel/react-3h/issues"
},
"homepage": "https://github.com/mrharel/react-3h#readme",
"devDependencies": {
"babel-core": "^6.26.0",
"babel-jest": "^20.0.3",
"babel-loader": "^7.1.2",
"babel-preset-env": "^1.6.0",
"babel-preset-es2015": "^6.24.1",
"clean-webpack-plugin": "^0.1.16",
"eslint": "^4.5.0",
"eslint-config-airbnb-base": "^11.3.2",
"eslint-plugin-import": "^2.7.0",
"jest": "^20.0.4",
"regenerator-runtime": "^0.11.0",
"webpack": "^3.5.5"
},
"babel": {
"presets": [
"es2015"
]
},
"jest": {
"testPathIgnorePatterns": [
"/node_modules/",
"__tests__/helpers/"
]
}
}