-
Notifications
You must be signed in to change notification settings - Fork 25
/
package.json
72 lines (72 loc) · 2.13 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
{
"name": "antd-sketchapp",
"version": "0.1.0",
"engines": {
"sketch": ">=3.0"
},
"main": "lib/index.js",
"repository": {
"type": "git",
"url": "https://github.com/ant-design/antd-sketchapp"
},
"bugs": {
"url": "https://github.com/ant-design/antd-sketchapp/issues"
},
"skpm": {
"name": "antd-transformer",
"manifest": "src/manifest.json",
"main": "plugin.sketchplugin"
},
"scripts": {
"build:lib": "./node_modules/.bin/babel ./src -d lib",
"build:index": "./node_modules/.bin/babel ./index.js -d lib",
"build": "rm -rf ./lib && npm run build:index && npm run build:lib",
"reinstall": "rm -rf node_modules && tnpm install",
"precommit": "npm run ci",
"ci": "npm run lint",
"link": "skpm-link .",
"lint": "./node_modules/.bin/eslint ./src/** --ext .js",
"build:package": "NODE_ENV=production skpm-build",
"watch": "skpm-build --watch",
"start": "skpm-build --watch --run",
"prepublish": "npm run build"
},
"devDependencies": {
"@skpm/builder": "^0.2.0",
"babel-cli": "^6.18.0",
"babel-eslint": "^10.1.0",
"babel-jest": "^20.0.3",
"babel-plugin-css-modules-transform": "^1.2.7",
"babel-plugin-import": "^1.2.1",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-es2015": "^6.18.0",
"babel-preset-react": "^6.16.0",
"babel-preset-stage-0": "^6.16.0",
"cheerio": "^1.0.0-rc.2",
"esformatter": "^0.11.1",
"esformatter-jsx": "^8.0.1",
"eslint": "^4.8.0",
"eslint-config-airbnb": "^16.0.0",
"eslint-plugin-babel": "^5.3.0",
"eslint-plugin-compat": "^3.5.1",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^6.0.0",
"eslint-plugin-markdown": "^1.0.0-beta.6",
"eslint-plugin-react": "^7.0.1"
},
"dependencies": {
"deepmerge": "^4.1.1",
"less": "^3.11.1",
"prop-types": "^15.5.8",
"react": "^15.4.2",
"react-sketchapp": "3.1.2",
"react-test-renderer": "^15.4.2",
"tinycolor2": "^1.4.1"
},
"files": [
"lib",
"src"
]
}