forked from iceyouth/beautify-isbn
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.37 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
{
"name": "beautify-isbn",
"version": "2.2.0",
"description": "A small package to make ISBN human-readable",
"keywords": [
"isbn",
"book",
"format",
"validate"
],
"main": "dist/bundle.cjs.js",
"module": "dist/bundle.es.js",
"repository": "https://github.com/iceyouth/beautify-isbn.git",
"author": "Zarni Phyo <[email protected]>",
"license": "MIT",
"scripts": {
"test": "yarn pretest && ava test/test-bundle.js",
"build": "yarn run clean && NODE_ENV=production rollup -c",
"dev": "rollup -c -w",
"pretest": "rollup -c rollup.config.test.js",
"clean": "rimraf dist",
"prepublish": "yarn build"
},
"devDependencies": {
"ava": "^0.19.1",
"babel-plugin-external-helpers": "^6.22.0",
"babel-preset-es2015": "^6.24.1",
"eslint": "^3.19.0",
"rimraf": "^2.6.1",
"rollup": "^0.41.6",
"rollup-plugin-babel": "^2.7.1",
"rollup-plugin-commonjs": "^8.0.2",
"rollup-plugin-eslint": "^3.0.0",
"rollup-plugin-multi-entry": "^2.0.1",
"rollup-plugin-node-resolve": "^3.0.0",
"rollup-plugin-replace": "^1.1.1",
"rollup-plugin-uglify": "^1.0.1",
"rollup-watch": "^3.2.2",
"uglify-js-harmony": "^2.7.5"
},
"dependencies": {},
"files": [
"dist/*.js"
],
"ava": {
"files": [
"test/*.js"
],
"failFast": true,
"tap": true,
"require": "babel-register"
}
}