-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.66 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": "plasma-user-js-client",
"version": "1.0.4",
"description": "User API SDK",
"main": "index.js",
"scripts": {
"predoc": "npm run build",
"doc": "rimraf doc && jsdoc --configure etc/jsdoc.json dist && jsdoc2md --configure etc/jsdoc2md.json src/User.js > ./README.md",
"build": "rimraf dist && babel -d dist src",
"clean": "rimraf doc dist",
"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",
"release": "npm version patch && git push && git push --tags && npm publish",
"prepublish": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Plasma-Platform/Plasma-Users-JS-Client.git"
},
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/Plasma-Platform/Plasma-Users-JS-Client/issues"
},
"homepage": "https://github.com/Plasma-Platform/Plasma-Users-JS-Client",
"dependencies": {
"lodash": "^4.17.4"
},
"devDependencies": {
"babel-cli": "^6.22.2",
"babel-preset-latest": "^6.22.0",
"bluebird": "^3.4.7",
"chai": "^3.5.0",
"isomorphic-fetch": "^2.2.1",
"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.6",
"rimraf": "^2.6.0",
"sinon": "^1.17.7"
},
"babel": {
"presets": [
"latest"
]
}
}