-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.47 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
{
"name": "create-prop-types",
"version": "1.0.0",
"description": "Create custom React prop types with ease",
"main": "lib/index.js",
"source": "source/index.ts",
"scripts": {
"test": "mocha ./test/index.spec.js --require babel-core/register",
"build": "NODE_ENV=production webpack",
"prepublishOnly": "npm run build && npm test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kettanaito/create-prop-types.git"
},
"keywords": [
"react",
"prop",
"prop",
"types",
"type",
"types",
"custom",
"prop",
"type",
"custom",
"type"
],
"author": "Artem Zakharchenko",
"license": "MIT",
"bugs": {
"url": "https://github.com/kettanaito/create-prop-types/issues"
},
"homepage": "https://github.com/kettanaito/create-prop-types#readme",
"devDependencies": {
"awesome-typescript-loader": "^4.0.0",
"babel": "^6.23.0",
"babel-core": "^6.26.0",
"babel-loader": "^7.1.4",
"babel-minify-webpack-plugin": "^0.3.0",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-env": "^1.6.1",
"babel-preset-react": "^6.24.1",
"chai": "^4.1.2",
"immutable": "^3.8.2",
"jsdom": "^11.6.2",
"mocha": "^5.0.3",
"prop-types": "^15.6.1",
"react": "^16.2.0",
"react-dom": "^16.2.0",
"request": "^2.83.0",
"tslint": "^5.9.1",
"typescript": "^2.7.2",
"webpack": "^3.11.0"
},
"dependencies": {
"invariant": "^2.2.3"
}
}