-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
101 lines (101 loc) · 2.76 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
{
"name": "@americanexpress/css-to-js",
"homepage": "https://github.com/americanexpress/css-to-js",
"bugs": {
"url": "https://github.com/americanexpress/css-to-js/issues"
},
"contributors": [
"Rachel Foreman <[email protected]> (https://github.com/ivy4)"
],
"repository": {
"type": "git",
"url": "https://github.com/americanexpress/css-to-js.git"
},
"version": "1.0.0",
"description": "Convert pure CSS to JavaScript literal objects or React Style",
"bin": "./bin/cssToJs.js",
"main": "lib/cjs/index.js",
"module": "lib/esm/index.js",
"scripts": {
"build": "rollup --config",
"clean": "rimraf test/test-inputs/generated-js",
"lint": "eslint src/**/*.js test/**/*.js bin/**/*.js",
"pretest": "npm run clean && npm run build",
"test": "jest && npm run test:git-history",
"test:lockfile": "lockfile-lint -p package-lock.json -t npm -a npm -o https: -c -i",
"posttest": "npm run lint && npm run test:lockfile",
"test:git-history": "commitlint --from origin/main --to HEAD",
"prepack": "npm run build"
},
"husky": {
"hooks": {
"pre-commit": "npm run test",
"commit-msg": "commitlint --edit $HUSKY_GIT_PARAMS"
}
},
"jest": {
"collectCoverageFrom": [
"src/**/*.js",
"bin/*.js"
],
"preset": "amex-jest-preset"
},
"license": "Apache-2.0",
"devDependencies": {
"@babel/cli": "^7.8.3",
"@babel/core": "^7.7.4",
"@babel/preset-env": "^7.7.4",
"@babel/register": "^7.7.4",
"@commitlint/config-conventional": "^8.3.4",
"@rollup/plugin-node-resolve": "^7.0.0",
"@semantic-release/changelog": "^5.0.1",
"@semantic-release/commit-analyzer": "^8.0.1",
"@semantic-release/git": "^9.0.0",
"@semantic-release/npm": "^9.0.1",
"@semantic-release/release-notes-generator": "^7.3.2",
"amex-jest-preset": "^6.1.0",
"commitlint": "^8.2.0",
"eslint": "^6.7.2",
"eslint-config-amex": "^11.1.0",
"husky": "^4.0.9",
"jest": "^24.9.0",
"lockfile-lint": "^4.3.6",
"rimraf": "^3.0.0",
"rollup": "^2.79.2",
"rollup-plugin-babel": "^4.3.3",
"semantic-release": "^17.4.4"
},
"dependencies": {
"css": "^2.2.4"
},
"release": {
"branches": [
"+([0-9])?(.{+([0-9]),x}).x",
"main",
"next",
"next-major",
{
"name": "beta",
"prerelease": true
},
{
"name": "alpha",
"prerelease": true
}
],
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
"@semantic-release/changelog",
"@semantic-release/npm",
"@semantic-release/git",
"@semantic-release/github"
]
},
"keywords": [
"css to js",
"style objects",
"js styles",
"convert css to js"
]
}