forked from eva-design/eva
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.83 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": "eva-design",
"private": true,
"description": "Eva Design System",
"version": "1.4.0",
"license": "MIT",
"author": "akveo <[email protected]>",
"homepage": "https://github.com/eva-design/eva#readme",
"repository": "git+https://github.com/eva-design/eva.git",
"bugs": {
"url": "https://github.com/eva-design/eva/issues"
},
"scripts": {
"build": "tsc",
"lint": "tslint -p tsconfig.json",
"lint:fix": "npm run lint -- --fix",
"gen:js": "ts-node ./packages/processor/js/scripts/generateExisting",
"gen:js-custom": "ts-node ./packages/processor/js/scripts/customize",
"test": "jest",
"ci:lint": "npm run lint",
"ci:build": "npm run build",
"ci:test": "npm run test",
"clean": "rimraf ./dist",
"conventional-changelog": "conventional-changelog",
"version:bump": "gulp version",
"version:changelog": "npm run conventional-changelog -- -i CHANGELOG.md -s",
"publish": "./scripts/publish.sh",
"publish:beta": "./scripts/publish.sh -- beta",
"release:prepare": "npm run clean && npm run build",
"release:validate": "npm run lint && npm run test",
"release": "npm run release:prepare && npm run release:validate && npm run publish",
"release:beta": "npm run release:prepare && npm run release:validate && npm run publish:beta"
},
"devDependencies": {
"@types/gulp": "^3.8.36",
"@types/jest": "^24.0.13",
"@types/lodash.merge": "^4.6.6",
"@types/node": "^12.0.3",
"@types/rimraf": "^2.0.2",
"ajv": "^6.10.0",
"conventional-changelog-cli": "^2.0.21",
"gulp": "^3.9.1",
"husky": "^1.1.2",
"jest": "^24.0.0-alpha.9",
"lodash.merge": "^4.6.1",
"rimraf": "^2.6.3",
"run-sequence": "^2.2.1",
"through2": "^3.0.1",
"ts-jest": "^23.10.5",
"ts-node": "^8.0.3",
"tslint": "^5.12.0",
"typescript": "^3.4.5"
}
}