-
Notifications
You must be signed in to change notification settings - Fork 54
/
package.json
45 lines (45 loc) · 1.33 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
{
"name": "easy-marker",
"version": "1.1.23",
"description": "Easy marker",
"main": "dist/easy-marker.esm.js",
"scripts": {
"build": "rollup -c build/esm.rollup.config.js && rollup -c build/rollup.config.js",
"testRegion": "rollup -f iife -o test/regionDist.js -i test/testRegion.js -n test -w",
"testNode": "rollup -f iife -o test/nodeDist.js -i test/testNode.js -n test -w",
"doc": "jsdoc2md src/base_easy_marker.js > api.md",
"preversion": "npm run build",
"postversion": "git push && git push --tags"
},
"files": [
"dist",
"src",
"api.md",
"build",
"index.d.ts"
],
"author": "[email protected]",
"repository": {
"type": "git",
"url": "https://github.com/luojilab/easy-marker.git"
},
"license": "ISC",
"devDependencies": {
"babel-core": "^6.26.3",
"babel-eslint": "^8.2.3",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.6.1",
"babel-runtime": "^6.26.0",
"eslint": "^4.19.1",
"eslint-config-airbnb-base": "^12.1.0",
"eslint-plugin-import": "^2.11.0",
"jsdoc": "^3.6.3",
"jsdoc-to-markdown": "^5.0.3",
"rollup": "^0.58.2",
"rollup-plugin-babel": "^3.0.4",
"rollup-plugin-commonjs": "^9.1.3",
"rollup-plugin-node-resolve": "^3.3.0",
"rollup-plugin-uglify": "^3.0.0"
},
"dependencies": {}
}