forked from staxmanade/CssToReact
-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
53 lines (53 loc) · 1.55 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": "css-to-and-from-react",
"version": "0.7.0",
"description": "A small util to convert between CSS and React styles object",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist/**/*"
],
"repository": {
"type": "git",
"url": "https://github.com/htbkoo/CssToAndFromReact.git"
},
"scripts": {
"test": "cross-env CI=true react-scripts-ts test --env=jsdom",
"test:unit": "cross-env CI=true react-scripts-ts test --testPathPattern=.*/src/.*.test.tsx?$",
"test-watch": "react-scripts-ts test --env=jsdom",
"eject": "react-scripts-ts eject",
"----npm----": "----------------",
"npm:build": "tsc -p ./tsconfig-npm.json",
"npm:clean": "rimraf dist",
"prepublishOnly": "npm run npm:clean && npm run npm:build"
},
"dependencies": {
"autoprefixer": "^8.4.1",
"css": "^2.2.1",
"postcss": "^8.4.38",
"postcss-js": "^1.0.1",
"react": "^16.3.2",
"react-dom": "^16.3.2",
"react-ga": "^2.7.0"
},
"devDependencies": {
"@types/enzyme": "^3.1.10",
"@types/enzyme-adapter-react-16": "^1.0.2",
"@types/jest": "^22.2.3",
"@types/node": "^8.10.11",
"@types/react": "^16.3.13",
"@types/react-dom": "^16.0.5",
"args": "^4.0.0",
"chai": "^4.1.2",
"cross-env": "^5.1.4",
"enzyme": "^3.3.0",
"enzyme-adapter-react-16": "^1.1.1",
"mv": "^2.1.1",
"rimraf": "^2.6.2",
"sinon": "^5.0.7",
"sinon-test": "^2.1.3",
"typescript": "^2.8.3",
"react-scripts-ts": "2.15.1"
},
"homepage": "https://htbkoo.github.io/CssToAndFromReact"
}