-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
71 lines (71 loc) · 2.03 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
60
61
62
63
64
65
66
67
68
69
70
71
{
"name": "safe-js",
"version": "0.3.2",
"description": "Alpha stage. Still promisifying. SAFE Network API helper library. Built to be isomoprhic and promisy.",
"main": "dist/index.js",
"scripts": {
"polyfill": "webpack",
"build": "babel src --presets babel-preset-es2015 --out-dir dist && npm run polyfill",
"test": "karma start",
"test:build": "karma start && npm run build",
"test:travis": "karma start --browsers PhantomJS",
"tdd": "karma start --auto-watch --single-run false",
"publish-please": "publish-please",
"prepublish": "publish-please guard",
"watch": "npm-watch"
},
"watch": {
"build": "src/**/*.js"
},
"repository": {
"type": "git",
"url": "https://github.com/joshuef/safe-js"
},
"keywords": [
"safe-network",
"api",
"privacy",
"isomorphic"
],
"author": "Josh Wilson <[email protected]>",
"license": "ISC",
"bugs": {
"url": "https://github.com/joshuef/safe-js/issues"
},
"homepage": "https://github.com/joshuef/safe-js",
"dependencies": {
"isomorphic-fetch": "^2.2.1"
},
"devDependencies": {
"babel-cli": "^6.10.1",
"babel-core": "^6.17.0",
"babel-loader": "^6.2.5",
"babel-polyfill": "^6.13.0",
"babel-preset-es2015": "^6.9.0",
"babel-preset-stage-0": "^6.5.0",
"chai": "^3.5.0",
"chai-as-promised": "^6.0.0",
"fetch-mock": "^5.3.1",
"fetch-mock-forwarder": "^1.0.0",
"karma": "^1.3.0",
"karma-babel-preprocessor": "^6.0.1",
"karma-chai": "^0.1.0",
"karma-chai-as-promised": "^0.1.2",
"karma-chrome-launcher": "^2.0.0",
"karma-mocha": "^1.1.1",
"karma-mocha-reporter": "^2.2.0",
"karma-notify-reporter": "^1.0.1",
"karma-phantomjs-launcher": "^1.0.2",
"karma-sinon-chai": "^1.2.4",
"karma-sourcemap-loader": "^0.3.7",
"karma-webpack": "^1.8.0",
"mocha": "^3.0.2",
"npm-watch": "^0.1.6",
"phantomjs": "^2.1.7",
"publish-please": "^2.1.4",
"requirejs": "^2.3.2",
"sinon": "^1.17.6",
"sinon-chai": "^2.8.0",
"webpack": "^1.13.2"
}
}