-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.44 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": "@meitu/Editor",
"version": "1.1.0",
"description": "meitu library template.",
"main": "dist/Editor.js",
"module": "dist/Editor.es.js",
"moduleName": "Editor",
"scripts": {
"test": "mocha test/index.js",
"start": "npm run watch",
"watch": "NODE_ENV=example rollup -w -c rollup.config.js",
"dev": "NODE_ENV=development rollup -c rollup.config.js",
"prod": "NODE_ENV=production rollup -c rollup.config.js",
"publish": "rm -rf dist && npm run dev && npm run prod",
"lint": "eslint src"
},
"repository": {
"url": "https://gitlab.meitu.com/npm/editor.git",
"type": "git"
},
"author": "lbc <[email protected]>",
"license": "MIT",
"devDependencies": {
"babel-eslint": "^7.2.2",
"babel-plugin-syntax-flow": "^6.18.0",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-flow-strip-types": "^6.22.0",
"babel-plugin-transform-object-rest-spread": "^6.23.0",
"babel-preset-es2015": "^6.24.1",
"eslint": "^3.19.0",
"expect.js": "^0.3.1",
"mocha": "^3.2.0",
"rollup-plugin-babel": "^2.7.1",
"rollup-plugin-node-resolve": "^3.0.0",
"rollup-plugin-postcss": "^1.3.3",
"rollup-plugin-sourcemaps": "^0.4.2",
"rollup-plugin-uglify": "^1.0.1",
"rollup-watch": "^3.2.2"
},
"dependencies": {
"@meitu/ClipImage": "git+https://github.com/ishareme/ClipImage.git",
"concat-with-sourcemaps": "^1.0.5",
"fs-extra": "^5.0.0"
}
}