This repository was archived by the owner on Jul 28, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.8 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.8 KB
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
{
"name": "fuck-this",
"version": "0.1.0",
"description": "A stateful, functional React component library",
"main": "lib/index.js",
"module": "dist/fuck-this.es.js",
"jsnext:main": "dist/fuck-this.es.js",
"scripts": {
"build": "rollup -c && npm run measure",
"watch": "rollup -c -w",
"flow": "flow",
"measure": "gzip -c $npm_package_unpkg | wc -c",
"prepublishOnly": "npm test && npm run build",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/drivetribe/fuck-this.git"
},
"keywords": ["react", "state", "functional", "component"],
"author": "Matt Perry",
"license": "MIT",
"bugs": {
"url": "https://github.com/drivetribe/fuck-this/issues"
},
"homepage": "https://github.com/drivetribe/fuck-this#readme",
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.3",
"babel-jest": "^23.0.0",
"babel-plugin-external-helpers": "^6.22.0",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-es2015-destructuring": "^6.23.0",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-env": "^1.7.0",
"babel-preset-flow": "^6.23.0",
"babel-preset-react": "^6.24.1",
"enzyme": "^3.3.0",
"enzyme-adapter-react-16": "^1.1.1",
"jest": "^23.0.0",
"react-dom": "^16.4.0",
"react-test-renderer": "^16.4.0",
"regenerator-runtime": "^0.11.1",
"rollup": "^0.59.3",
"rollup-plugin-babel": "^3.0.4",
"rollup-plugin-node-resolve": "^3.3.0",
"rollup-plugin-replace": "^2.0.0",
"rollup-plugin-uglify": "^3.0.0"
},
"peerDependencies": {
"react": "^16.4.0"
},
"jest": {
"verbose": true,
"moduleDirectories": ["node_modules"]
},
"prettier": {
"singleQuote": true
},
"unpkg": "./dist/fuck-this.js"
}