-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpackage.json
39 lines (39 loc) · 1.24 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
{
"name": "@meitu/matting",
"version": "1.0.2",
"description": "the matting function",
"main": "dist/matting.js",
"module": "dist/matting.es.js",
"moduleName": "Matting",
"scripts": {
"test": "mocha test/index.js",
"start": "http-server",
"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/matting.git",
"type": "git"
},
"author": "gxd <[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-sourcemaps": "^0.4.2",
"rollup-plugin-uglify": "^1.0.1",
"rollup-watch": "^3.2.2"
}
}