This repository has been archived by the owner on Aug 16, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 2.04 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
{
"name": "react-mori-proptypes",
"version": "0.0.5",
"description": "React PropType validators for mori",
"main": "dist/MoriPropTypes.js",
"scripts": {
"clean": "rm -rf dist",
"dev": "node -r babel-register scripts/webpack/server.js",
"build": "NODE_ENV=production node -r babel-register ./node_modules/webpack/bin/webpack --config scripts/webpack/webpack.config.production.js --progress --profile --colors",
"lint": "eslint src *.js",
"prepublish": "npm run build",
"test": "NODE_ENV=test mocha --compilers js:babel-register --recursive --require ./test/setup.js test/**/*.spec.js",
"test-watch": "npm test -- --watch",
"test-e2e": "NODE_ENV=test mocha --compilers js:babel-register --require ./test/setup.js --require co-mocha ./test/e2e.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/farism/react-mori-proptypes.git"
},
"keywords": [
"react",
"proptype",
"immutable",
"mori",
"morijs",
"mori-js"
],
"author": "Faris Mustafa <farismmk@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/farism/react-mori-proptypes/issues"
},
"homepage": "https://github.com/farism/react-mori-proptypes#readme",
"peerDependencies": {
"mori": "^0.3.2"
},
"devDependencies": {
"babel-eslint": "^6.1.0",
"babel-loader": "^6.2.4",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-polyfill": "^6.9.1",
"babel-preset-es2015": "^6.9.0",
"babel-preset-react": "^6.5.0",
"babel-preset-react-hmre": "^1.1.1",
"babel-preset-stage-0": "^6.5.0",
"babel-register": "^6.9.0",
"chai": "^3.5.0",
"eslint": "^2.13.1",
"eslint-config-airbnb": "^9.0.1",
"eslint-import-resolver-webpack": "^0.3.1",
"eslint-plugin-import": "^1.9.2",
"eslint-plugin-jsx-a11y": "^1.5.3",
"eslint-plugin-react": "^5.2.2",
"express": "^4.14.0",
"jsdom": "^9.2.1",
"mocha": "^2.5.3",
"react": "^15.1.0",
"webpack": "^1.13.1",
"webpack-dev-middleware": "^1.6.1",
"webpack-hot-middleware": "^2.10.0"
}
}