This repository has been archived by the owner on Dec 4, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
125 lines (125 loc) · 4.03 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
{
"name": "bit-javascript",
"version": "2.1.6-dev.3",
"scripts": {
"lint": "tsc && eslint \"src/**/*.ts\"",
"lint-circle": "eslint \"src/**/*.ts\" --format junit -o junit/eslint-results.xml",
"check-types": "tsc",
"precommit": "lint-staged",
"format": "prettier \"src/**/*.ts\" --write",
"test": "mocha --require ./babel-register './src/**/*.spec.ts'",
"test-circle": "mocha --require ./babel-register --reporter mocha-circleci-reporter './src/**/*.spec.ts'",
"test-appveyor": "mocha --require ./babel-register --reporter mocha-appveyor-reporter \"./src/**/*.spec.ts\"",
"clean": "rm -rf dist",
"build": "babel src -d dist --verbose --extensions \".ts\"",
"watch": "babel --watch src -d dist --source-maps --verbose --extensions \".ts\"",
"prepublishOnly": "npm run clean && npm run build",
"build-debug": "babel src -d dist --source-maps",
"pre-release": "gh-release --prerelease",
"release": "gh-release",
"release:circle": "gh-release -y"
},
"bin": {
"bitjs": "bin/bitjs.js"
},
"homepage": "https://github.com/teambit/bit-javascript",
"repository": {
"type": "git",
"url": "https://github.com/teambit/bit-javascript"
},
"keywords": [
"bit",
"node",
"components",
"bit-node",
"bit-js",
"bit-component",
"bit-components"
],
"main": "dist/index.js",
"dependencies": {
"@babel/runtime": "^7.6.3",
"@typescript-eslint/typescript-estree": "^2.28.0",
"app-module-path": "^2.2.0",
"bluebird": "^3.7.1",
"camelcase": "^5.3.1",
"chalk": "^2.4.2",
"commander": "^2.14.1",
"css-tree": "^1.0.0-alpha.29",
"debug": "^4.1.1",
"detective-amd": "^3.0.0",
"detective-stylus": "^1.0.0",
"enhanced-resolve": "^4.1.1",
"fs-extra": "^8.1.0",
"glob": "^7.1.1",
"ini-builder": "^1.1.1",
"is-relative-path": "^2.0.0",
"is-url": "^1.2.4",
"lodash.partition": "^4.6.0",
"lodash.set": "^4.3.2",
"module-definition": "^3.2.0",
"module-lookup-amd": "^6.2.0",
"node-source-walk": "^4.2.0",
"object-assign": "^4.1.1",
"ora": "^1.2.0",
"parents": "^1.0.1",
"ramda": "^0.26.1",
"regenerator-runtime": "^0.10.5",
"resolve": "^1.5.0",
"resolve-dependency-path": "^2.0.0",
"sass-lookup": "^3.0.0",
"stylable": "5.2.2",
"stylus-lookup": "^3.0.2",
"typescript": "3.8.3",
"user-home": "^2.0.0",
"vue-template-compiler": "^2.5.13"
},
"devDependencies": {
"@babel/cli": "^7.6.4",
"@babel/core": "^7.6.4",
"@babel/plugin-proposal-class-properties": "^7.5.5",
"@babel/plugin-proposal-object-rest-spread": "^7.6.2",
"@babel/plugin-transform-async-to-generator": "^7.4.4",
"@babel/plugin-transform-flow-strip-types": "^7.0.0",
"@babel/plugin-transform-modules-commonjs": "^7.2.0",
"@babel/plugin-transform-runtime": "^7.0.0",
"@babel/preset-env": "^7.0.0",
"@babel/preset-flow": "^7.0.0",
"@babel/preset-typescript": "^7.6.0",
"@babel/register": "^7.4.4",
"@types/mocha": "^5.2.7",
"@types/node": "^12.7.9",
"@typescript-eslint/eslint-plugin": "^2.28.0",
"@typescript-eslint/parser": "^2.28.0",
"babel-eslint": "^10.0.3",
"babel-plugin-syntax-async-functions": "^6.13.0",
"babel-plugin-transform-builtin-extend": "^1.1.2",
"chai": "^4.1.2",
"eslint": "^6.5.1",
"eslint-config-airbnb-typescript": "^5.0.0",
"eslint-config-prettier": "^6.3.0",
"eslint-plugin-comments": "^1.0.0",
"eslint-plugin-eslint-comments": "^3.1.2",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-mocha": "^6.1.1",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-unicorn": "^12.0.2",
"gh-release": "^3.5.0",
"husky": "^0.14.3",
"lint-staged": "^7.1.0",
"mocha": "^5.1.1",
"mocha-appveyor-reporter": "^0.4.2",
"mocha-circleci-reporter": "0.0.3",
"mocha-junit-reporter": "^1.13.0",
"mock-fs": "^4.8.0",
"prettier": "^1.18.2",
"rewire": "^4.0.1",
"sinon": "^6.0.1"
},
"lint-staged": {
"*.{ts,js,css}": [
"prettier --write",
"git add"
]
}
}