forked from matthewstyers/moltin-react
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.15 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.15 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
{
"name": "moltin-react",
"description": "ReactJS SDK for the Moltin eCommerce API",
"version": "0.2.1",
"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.cjs.js",
"jsnext:main": "src/moltin.js",
"module": "dist/moltin.cjs.js",
"cjs:main": "dist/moltin.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": {
"chai": "^3.5.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": {
"node-localstorage": "^1.3.0"
}
}