-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
113 lines (113 loc) · 3.28 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
{
"name": "unkn",
"author": "Adrian C. Miranda",
"version": "0.0.3",
"description": "ES6 to CommonJS",
"homepage": "https://github.com/adriancmiranda/unkn#readme",
"bin": "cli.js",
"main": "index.js",
"module": "index.js",
"tonicExampleFilename": "example/runkit.js",
"license": "MIT",
"scripts": {
"check": "npx npm-check -uEy",
"test": "cross-env NODE_ENV=test ava test/*.unit.js --color",
"test:fixtures": "cross-env NODE_ENV=test npm run build:lib",
"rollup": "rollup -c .bin/index.js",
"unbuild": "rimraf dist/*.{js,map,gz}",
"build:lib": "node cli fixtures/library/{*,**/*}.next.js --replace='/.next(.js)?/i,$1'",
"build:minify": "npm run rollup -- --environment=SIGN,MINIFY,NODE_ENV:production",
"build:concat": "npm run unbuild && npm run rollup -- --environment=SIGN,INDENT,NODE_ENV:production",
"build": "run-s build:concat build:minify",
"dev": "npm test -- --no-cache --watch",
"lint": "eslint --ext .js index.next.js cli.next.js register.next.js",
"precommit": "run-s lint test",
"commitmsg": "commitlint -x @commitlint/config-conventional -e $GIT_PARAMS",
"prerelease": "npm test",
"release": "standard-version"
},
"dependencies": {
"colors": "1.3.1",
"describe-type": "0.7.0",
"glob": "7.1.2",
"read-argv": "1.0.0",
"rx4d": "1.3.0"
},
"devDependencies": {
"@babel/cli": "7.0.0-beta.46",
"@babel/plugin-external-helpers": "7.0.0-beta.46",
"@babel/plugin-transform-runtime": "7.0.0-beta.46",
"@babel/polyfill": "7.0.0-beta.46",
"@babel/preset-env": "7.0.0-beta.46",
"@babel/register": "7.0.0-beta.46",
"@commitlint/cli": "7.0.0",
"@commitlint/config-conventional": "7.0.1",
"ava": "1.0.0-beta.6",
"babel-eslint": "8.2.6",
"cross-env": "5.2.0",
"cross-spawn": "6.0.5",
"eslint": "5.2.0",
"eslint-config-airbnb": "17.0.0",
"eslint-config-airbnb-base": "13.0.0",
"eslint-plugin-import": "2.13.0",
"eslint-plugin-jsx-a11y": "6.1.1",
"eslint-plugin-react": "7.10.0",
"git-revision-webpack-plugin": "3.0.3",
"husky": "0.14.3",
"moment": "2.22.2",
"npm-run-all": "4.1.3",
"pirate-flag": "0.1.0",
"rimraf": "2.6.2",
"rollup": "0.63.4",
"rollup-plugin-babel": "4.0.0-beta.4",
"rollup-plugin-buble": "0.19.2",
"rollup-plugin-commonjs": "9.1.3",
"rollup-plugin-filesize": "4.0.1",
"rollup-plugin-node-resolve": "3.3.0",
"rollup-plugin-optimize-js": "0.0.4",
"rollup-plugin-uglify": "4.0.0",
"standard-version": "4.4.0",
"uglify-es": "3.3.9"
},
"files": [
"common",
"example",
"options.js",
"options.min.js",
"options.min.js.map",
"options.next.js",
"index.js",
"index.min.js",
"index.min.js.map",
"index.next.js",
"cli.js",
"cli.min.js",
"cli.min.js.map",
"cli.next.js",
"register.js",
"register.min.js",
"register.min.js.map",
"register.next.js",
"LICENSE",
"README.md"
],
"keywords": [
"es6",
"commonjs",
"transform",
"cjs"
],
"ava": {
"require": [
"@babel/polyfill",
"./.bin/ava/babel-register.js"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/adriancmiranda/unkn.git"
},
"bugs": {
"url": "https://github.com/adriancmiranda/unkn/issues"
}
}