-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.42 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
{
"name": "versiona",
"version": "4.6.0",
"description": "NPM auto publisher tool for Travis CI + Git tags commiting new package version",
"main": "dist",
"author": "Alex Castells",
"license": "MIT",
"repository": "github:alextremp/versiona",
"bugs": "https://github.com/alextremp/versiona/issues",
"keywords": [
"travis",
"ci",
"deploy",
"publish",
"version",
"semver"
],
"scripts": {
"clean": "rm -Rf dist",
"phoenix": "rm -Rf node_modules && rm -Rf package-lock.json && npm i",
"prepack": "npm run clean && npm run build",
"lint": "sui-lint js",
"check": "npm run lint",
"build": "npm run clean && babel src/main --out-dir dist",
"versiona": "rm -Rf deploy && babel src/main --out-dir deploy && node priv_versiona.js"
},
"devDependencies": {
"@babel/cli": "^7.7.5",
"@babel/core": "^7.7.5",
"@babel/plugin-transform-modules-commonjs": "^7.7.5",
"@babel/register": "^7.7.4",
"@babel/runtime": "^7.7.6",
"@s-ui/lint": "^3.14.0",
"babel-loader": "^8.0.6"
},
"babel": {
"plugins": [
"@babel/plugin-transform-modules-commonjs"
]
},
"eslintConfig": {
"extends": [
"./node_modules/@s-ui/lint/eslintrc.js"
]
},
"prettier": "./node_modules/@s-ui/lint/.prettierrc.js",
"stylelint": {
"extends": "./node_modules/@s-ui/lint/stylelint.config.js"
},
"dependencies": {
"logda": "1",
"shelljs": "0.8.3"
}
}