forked from yuanfux/zero-width-lib
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 1020 Bytes
/
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
{
"name": "zero-width-lib",
"version": "1.1.0",
"description": "A lib for zero width character utils",
"main": "dist/zero-width-lib.js",
"umd:main": "dist/zero-width-lib.umd.js",
"module": "dist/zero-width-lib.m.js",
"source": "src/zero-width-lib.js",
"scripts": {
"build": "npm run clean && NODE_ENV=production ./node_modules/.bin/rollup -c",
"dev": "NODE_ENV=development ./node_modules/.bin/rollup -c -w",
"clean": "rm -rf dist/*",
"test": "mocha"
},
"author": "Yuan Fu <fuyuanx@gmail.com>",
"files": [
"dist/",
"README.md"
],
"repository": {
"type": "git",
"url": "https://github.com/yuanfux/zero-width-lib.git"
},
"keywords": [
"zero",
"width",
"zero width"
],
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.5.4",
"@babel/preset-env": "^7.5.4",
"mocha": "^6.1.4",
"rollup": "^1.16.7",
"rollup-plugin-babel": "^4.3.3",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-terser": "^5.1.1"
}
}