-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.51 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
{
"name": "ember-tailwind-codemod",
"version": "0.5.2",
"scripts": {
"lint": "eslint --cache .",
"test": "jest",
"coverage": "jest --coverage",
"update-docs": "codemod-cli update-docs",
"copy": "cp ../super-rentals/app/components/*.hbs ./demo/templates && cp ../super-rentals/app/templates/*.hbs ./demo/templates && cp ../super-rentals/dist/assets/*.css ./demo/css",
"demo": "./bin/cli.js demo/templates --css=demo/css",
"clean": "npm run copy && rm *.txt",
"deploy": "git push && git push --tags && npm publish",
"debug": "node --inspect-brk ./node_modules/jest/bin/jest.js"
},
"bin": "./bin/cli.js",
"keywords": [
"ember",
"tailwindcss",
"tailwind",
"codemod",
"emberjs"
],
"author": "Rajasegar Chandran <rajasegar.c@gmail.com>",
"license": "MIT",
"repository": "https://github.com/rajasegar/ember-tailwind-codemod",
"dependencies": {
"chalk": "^4.1.1",
"codemod-cli": "^3.1.2",
"debug": "^4.3.1",
"ember-template-recast": "^5.0.3",
"globby": "^11.0.3",
"minimist": "^1.2.5",
"ora": "^5.4.0",
"parsel-js": "^1.0.2",
"postcss": "^8.2.15",
"tailwind-mappings": "^1.5.6",
"workerpool": "^6.1.4"
},
"devDependencies": {
"eslint": "^7.26.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.4.0",
"jest": "^26.6.3",
"prettier": "^2.3.0"
},
"engines": {
"node": "10.* || 12.* || >= 14"
},
"jest": {
"testEnvironment": "node"
}
}