-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.43 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.43 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
{
"name": "react-toggle-pattern",
"repository": {
"type": "git",
"url": "https://github.com/dwango-js/react-toggle-pattern.git"
},
"author": "azu",
"email": "[email protected]",
"homepage": "https://github.com/dwango-js/react-toggle-pattern",
"license": "MIT",
"bugs": {
"url": "https://github.com/dwango-js/react-toggle-pattern/issues"
},
"files": [
"src/",
"lib/"
],
"version": "1.4.1",
"description": "React Component that provide toggle pattern",
"main": "lib/index.js",
"directories": {
"test": "test"
},
"scripts": {
"test": "mocha test/",
"build": "NODE_ENV=production babel src --out-dir lib --source-maps",
"watch": "babel src --out-dir lib --watch --source-maps",
"prepublish": "npm run --if-present build"
},
"keywords": [
"react",
"component",
"ab-testing",
"ab-test",
"pattern",
"toggle"
],
"devDependencies": {
"@babel/cli": "^7.0.0",
"@babel/core": "^7.0.0",
"@babel/preset-env": "^7.0.0",
"@babel/preset-react": "^7.0.0",
"@babel/register": "^7.0.0",
"babel-preset-jsdoc-to-assert": "^5.0.0",
"babel-preset-power-assert": "^3.0.0",
"enzyme": "^3.6.0",
"enzyme-adapter-react-16": "^1.5.0",
"mocha": "^5.2.0",
"power-assert": "^1.4.1",
"react": "16",
"react-addons-test-utils": "^15.0.2",
"react-dom": "16"
},
"peerDependencies": {
"react": ">=15.0.2"
},
"dependencies": {}
}