forked from isysd-mirror/iso-module-boilerplate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 1.07 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
{
"name": "iso-module-boilerplate",
"version": "1.0.0",
"description": "Isomorphic (ES6 + NodeJS) module boilerplate, with test framework integration.",
"main": "index.node.js",
"module": "index.js",
"scripts": {
"test": "iso-test test.js",
"preinstall": "gpm -n .. -t .. -u https -i .",
"postinstall": "node -e \"try { require('../esm/esm.js')(module); } catch (e) {require('child_process').execSync('npm i', {cwd: require('path').join('..', 'esm')})}\""
},
"author": "isysd",
"license": "MIT",
"dependencies": {
"esm": "../esm"
},
"devDependencies": {
"iso-test": "../iso-test"
},
"peerDependencies": {
"gpm": "https://github.com/isysd-mirror/gpm.git#isysd"
},
"repository": {
"type": "git",
"url": "https://github.com/isysd-mirror/iso-module-boilerplate.git"
},
"keywords": [
"isomorphic",
"es6",
"esm",
"module",
"boilerplate"
],
"bugs": {
"url": "https://github.com/isysd-mirror/iso-module-boilerplate/issues"
},
"homepage": "https://github.com/isysd-mirror/iso-module-boilerplate#readme"
}