-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.83 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
{
"name": "plasma-products-api-client-js",
"version": "1.0.14",
"main": "dist/index.js",
"scripts": {
"predoc": "npm run build",
"doc": "rimraf doc && jsdoc --configure etc/jsdoc.json dist && jsdoc2md --configure etc/jsdoc2md.json src/Products.js > ./README.md",
"build": "rimraf dist && babel -d dist src",
"release": "npm version patch && git push && git push --tags && npm publish",
"test": "./node_modules/.bin/mocha --compilers js:babel-register --require babel-polyfill --require bluebird --require isomorphic-fetch",
"test:coverage": "./node_modules/.bin/istanbul cover --report clover ./node_modules/.bin/_mocha -- -u exports -R spec test/**/* --compilers js:babel-register --require babel-polyfill --require bluebird --require isomorphic-fetch",
"prepublish": "npm run build",
"clean": "rimraf doc dist"
},
"author": "TemplateMonster.com",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/Plasma-Platform/Plasma-Products-JS-Client.git"
},
"bugs": {
"url": "https://github.com/Plasma-Platform/Plasma-Products-JS-Client/issues"
},
"homepage": "https://github.com/Plasma-Platform/Plasma-Products-JS-Client",
"description": "Products API JS client",
"babel": {
"presets": [
"latest",
"stage-0"
]
},
"devDependencies": {
"assert": "^1.4.1",
"babel-cli": "^6.18.0",
"babel-preset-latest": "^6.16.0",
"babel-preset-stage-0": "^6.22.0",
"chai": "^3.5.0",
"istanbul": "^1.0.0-alpha",
"jsdoc": "^3.4.3",
"jsdoc-babel": "^0.3.0",
"jsdoc-strip-async-await": "^0.1.0",
"mocha": "^3.2.0",
"nock": "^9.0.2",
"rimraf": "^2.5.4",
"sinon": "^1.17.7"
},
"dependencies": {
"isomorphic-fetch": "^2.2.1",
"babel-polyfill": "^6.22.0",
"bluebird": "^3.4.7",
"lodash": "^4.17.4"
}
}