forked from PeculiarVentures/pvutils
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.56 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
{
"author": {
"email": "[email protected]",
"name": "Yury Strozhevsky"
},
"contributors": [
{
"email": "[email protected]",
"name": "Ryan Hurst"
},
{
"email": "[email protected]",
"name": "Gabriel Paul \"Cley Faye\" Risterucci"
}
],
"repository": {
"type": "git",
"url": "https://github.com/PeculiarVentures/pvutils.git"
},
"description": "Common utilities for products from Peculiar Ventures",
"engines": {
"node": ">=6.0.0"
},
"scripts": {
"prepublishOnly": "npm run build",
"build": "babel src --no-babelrc --config-file=./node.babelrc --out-dir=build --source-maps",
"buildBrowser": "babel src --no-babelrc --config-file=./browser.babelrc --out-dir=buildBrowser --source-maps",
"watch": "babel src --compact=false --out-dir build --source-maps --watch",
"test": "cross-env NODE_ENV=test nyc mocha --require @babel/register --require @babel/polyfill",
"prepack": "npm run build && npm run buildBrowser"
},
"jsnext:main": "./src/utils.js",
"module": "./src/utils.js",
"browser": "./buildBrowser/utils.js",
"main": "./build/utils.js",
"devDependencies": {
"@babel/cli": "^7.2.0",
"@babel/core": "^7.2.0",
"@babel/polyfill": "^7.0.0",
"@babel/preset-env": "^7.2.0",
"@babel/register": "^7.0.0",
"babel-plugin-istanbul": "^4.1.5",
"cross-env": "^5.1.4",
"eslint": "^4.19.1",
"mocha": "^3.0.2",
"nyc": "^11.6.0"
},
"files": [
"build",
"buildBrowser"
],
"name": "pvutils",
"version": "1.0.16-es5",
"license": "MIT"
}