This repository has been archived by the owner on Feb 19, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 46
/
package.json
79 lines (79 loc) · 2.26 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
{
"name": "freactal",
"version": "2.0.3",
"description": "",
"main": "lib/index.js",
"module": "es/index.js",
"jsnext:main": "es/index.js",
"scripts": {
"build": "npm run clean && npm run build-lib && npm run build-es && npm run build-umd",
"build-lib": "BABEL_ENV=commonjs babel -d lib src",
"build-es": "babel -d es src",
"build-umd": "npm run build-umd:dev && npm run build-umd:prod",
"build-umd:dev": "BABEL_ENV=umd rollup -c",
"build-umd:prod": "BABEL_ENV=umd NODE_ENV=production rollup -c",
"clean": "rm -rf lib es umd",
"watch": "nodemon --watch src --exec npm run build-lib",
"check": "npm run lint && npm run test",
"test": "mocha spec",
"lint": "eslint *.js src spec",
"preversion": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/FormidableLabs/freactal.git"
},
"files": [
"es",
"lib",
"umd"
],
"keywords": [
"react",
"state",
"hoc"
],
"author": "Dale Bustad <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/FormidableLabs/freactal/issues"
},
"homepage": "https://github.com/FormidableLabs/freactal#readme",
"peerDependencies": {
"react": "^15.6.2 || ^16.0.0"
},
"devDependencies": {
"babel-cli": "^6.24.0",
"babel-eslint": "^7.2.1",
"babel-plugin-external-helpers": "^6.22.0",
"babel-plugin-transform-react-jsx": "^6.23.0",
"babel-plugin-transform-react-remove-prop-types": "^0.4.10",
"babel-preset-env": "^1.6.0",
"chai": "^3.5.0",
"chai-enzyme": "1.0.0-beta.0",
"cheerio": "^0.22.0",
"enzyme": "^2.8.2",
"eslint": "^3.18.0",
"eslint-config-formidable": "^2.0.1",
"eslint-plugin-filenames": "^1.1.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-react": "^6.10.3",
"jsdom": "^9.12.0",
"mocha": "^3.2.0",
"nodemon": "^1.11.0",
"react": "15.6.2",
"react-dom": "15.6.2",
"react-test-renderer": "^15.5.4",
"rollup": "^0.52.0",
"rollup-plugin-babel": "^3.0.2",
"rollup-plugin-commonjs": "^8.2.6",
"rollup-plugin-node-resolve": "^3.0.2",
"rollup-plugin-uglify": "^2.0.1",
"sinon": "^2.1.0",
"sinon-chai": "^2.9.0"
},
"dependencies": {
"prop-types": "15.6.0"
},
"sideEffects": false
}