-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 1.64 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": "react-variants",
"version": "1.0.0",
"description": "Variant editor to easily setup multiple versions (variants) of a thing like a product on an e-commerce website.",
"main": "dist/index.js",
"scripts": {
"tape": "babel-node ./node_modules/.bin/tape 'lib/**/*.spec.js'",
"pretest": "npm run lint",
"test": "npm run tape | faucet",
"watch:test": "sane 'npm run tape | tap-spec' --glob='lib/**/*.spec.js'",
"start": "PORT=${PORT-4567} http-server example",
"build:example": "browserify -t babelify ./example/main.js -o example/bundle.js -d",
"watch:example": "watchify -t babelify ./example/main.js -o example/bundle.js -d -v",
"lint": "eslint lib"
},
"keywords": [
"e-commerce",
"webshop",
"webstore",
"variant",
"product"
],
"author": {
"name": "Tamas Fodor",
"email": "ftamas.mail@gmail.com"
},
"license": "MIT",
"devDependencies": {
"babel": "^5.8.34",
"babel-eslint": "^5.0.0-beta6",
"babelify": "^6.4.0",
"browserify": "^12.0.1",
"cheerio": "^0.19.0",
"deep-freeze": "0.0.1",
"eslint": "^1.10.3",
"eslint-config-pi": "^2.0.0",
"eslint-plugin-react": "^3.11.3",
"faucet": "0.0.1",
"http-server": "^0.8.5",
"react": "^16.5.0",
"react-dom": "^16.5.0",
"sane": "^1.3.0",
"sinon": "^1.17.2",
"tap-spec": "^4.1.1",
"tape": "^4.2.2",
"watchify": "^3.6.1"
},
"dependencies": {
"compute-product": "^1.0.0",
"prop-types": "^15.6.2",
"react-redux": "^5.0.7",
"redux": "^4.0.0",
"redux-thunk": "^2.3.0"
},
"peerDependencies": {
"react": ">= 16 < 17",
"react-dom": ">= 16 < 17"
}
}