forked from moltin/js-sdk
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
49 lines (49 loc) · 1.34 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
{
"name": "moltin-react",
"description": "ReactJS SDK for the Moltin eCommerce API",
"version": "1.0.2",
"homepage": "https://github.com/matthewstyers/moltin-react",
"author": {
"name": "Matthew Styers"
},
"scripts": {
"roll:cjs": "rollup -c rollup/cjs.config.js",
"build": "npm run roll:cjs",
"test": "npm run build && mocha test/unit/* || true"
},
"main": "dist/moltin-react.cjs.js",
"jsnext:main": "src/moltin.js",
"module": "dist/moltin-react.cjs.js",
"cjs:main": "dist/moltin-react.cjs.js",
"repository": {
"type": "git",
"url": "git://github.com/matthewstyers/moltin-react.git"
},
"bugs": {
"url": "https://github.com/matthewstyers/moltin-react/issues"
},
"licenses": [
{
"type": "MIT",
"url": "https://github.com/matthewstyers/moltin-react/blob/master/LICENSE"
}
],
"devDependencies": {
"@krux/condition-jenkins": "^1.0.1",
"chai": "^3.5.0",
"eslint": "^3.19.0",
"eslint-config-airbnb-base": "^11.1.3",
"eslint-plugin-import": "^2.2.0",
"mocha": "^3.2.0",
"nock": "^9.0.2",
"rollup": "^0.36.4",
"rollup-plugin-buble": "^0.14.0",
"rollup-plugin-commonjs": "^5.0.5",
"rollup-plugin-node-resolve": "^2.0.0",
"rollup-plugin-uglify": "^1.0.1"
},
"dependencies": {
"inflected": "^2.0.1",
"node-localstorage": "^1.3.0"
}
}