-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.45 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.45 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
{
"name": "react-functional-lifecycle",
"version": "3.0.0",
"description": "Access lifecycle methods without a class or a component state",
"main": "lib/index.js",
"scripts": {
"watch": "./node_modules/.bin/tsc --watch",
"typescript": "./node_modules/.bin/tsc",
"test": "node node_modules/jest/bin/jest.js",
"watch:test": "node node_modules/jest/bin/jest.js --watchAll",
"prepublish": "npm run test; npm run typescript"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/Aloompa/react-functional-lifecycle.git"
},
"keywords": [
"React"
],
"author": "Tyson Cadenhead",
"license": "MIT",
"bugs": {
"url": "https://github.com/Aloompa/react-functional-lifecycle/issues"
},
"homepage": "https://github.com/Aloompa/react-functional-lifecycle#readme",
"devDependencies": {
"@types/jest": "22.2.2",
"@types/react": "16.3.6",
"@types/react-test-renderer": "16.0.1",
"babel": "6.5.2",
"babel-cli": "6.26.0",
"babel-core": "6.10.4",
"babel-eslint": "6.1.2",
"babel-plugin-transform-flow-comments": "6.8.0",
"babel-preset-es2015": "6.9.0",
"babel-preset-react": "6.11.1",
"babel-preset-stage-0": "6.5.0",
"eslint": "3.1.0",
"eslint-plugin-react": "5.2.2",
"expect": "1.20.2",
"flow": "0.2.3",
"jest": "22.1.0",
"mocha": "2.5.3",
"react": "16.3.1",
"react-dom": "16.3.1",
"react-test-renderer": "16.3.1",
"typescript": "2.8.1"
}
}