forked from orbitdb-archive/ipfs-log
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.92 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
{
"name": "ipfs-log",
"version": "4.2.0",
"description": "Append-only log CRDT on IPFS",
"main": "src/log.js",
"author": "Haad",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/orbitdb/ipfs-log"
},
"engines": {
"node": ">=8.0.0"
},
"dependencies": {
"orbit-db-identity-provider": "github:orbitdb/orbit-db-identity-provider",
"p-map": "^1.1.1",
"p-whilst": "^1.0.0"
},
"devDependencies": {
"@orbitdb/eslint-config-orbitdb": "0.0.2",
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-loader": "^8.0.2",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.6.1",
"datastore-level": "~0.8.0",
"go-ipfs-dep": "~0.4.17",
"ipfs": "~0.31.4",
"ipfs-repo": "~0.23.1",
"ipfsd-ctl": "~0.39.1",
"is-node": "^1.0.2",
"istanbul": "^0.4.5",
"mocha": "^5.2.0",
"mocha-headless-chrome": "~2.0.1",
"orbit-db-keystore": "github:orbitdb/orbit-db-keystore",
"rimraf": "^2.6.1",
"standard": "^12.0.1",
"uglifyjs-webpack-plugin": "~1.3.0",
"webpack": "^3.10.0"
},
"standard": {
"env": "mocha",
"ignore": "lib/es5/**/*.js"
},
"scripts": {
"test": "TEST=all mocha",
"test:coverage": "istanbul cover -x src/g-set.js _mocha",
"test:browser": "npm run build:tests && mocha-headless-chrome -f ./test/browser/index.html",
"build": "npm run build:es5 && npm run build:examples && npm run build:dist",
"build:tests": "webpack --config webpack.tests.config.js",
"build:examples": "webpack --config webpack.example.config.js --sort-modules-by size --define process.env.NODE_ENV=production",
"build:dist": "webpack --config webpack.config.js --display-modules --sort-modules-by size --define process.env.NODE_ENV=production",
"build:es5": "babel src --out-dir ./lib/es5/ --presets babel-preset-env --plugins babel-plugin-transform-runtime",
"lint": "standard"
}
}