This repository has been archived by the owner on Sep 10, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
72 lines (72 loc) · 2.06 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
{
"name": "@convoy/dapper",
"version": "2.0.0",
"description": "Styling library",
"license": "Apache-2.0",
"files": [
"*.md",
"dist"
],
"main": "./dist/src/index.js",
"repository": "convoyinc/dapper",
"homepage": "https://github.com/convoyinc/dapper",
"bugs": "https://github.com/convoyinc/dapper/issues",
"scripts": {
"clean": "./scripts/clean.sh",
"compile": "./scripts/compile.sh",
"release": "./scripts/release.sh",
"start": "./scripts/start.sh",
"test": "./scripts/test.sh",
"test:build:webpack": "./scripts/test:build:webpack.sh",
"test:compile": "./scripts/test:compile.sh",
"test:coverage": "./scripts/test:coverage.sh",
"test:devserver": "./scripts/test:devserver.sh",
"test:style": "./scripts/test:style.sh",
"test:unit": "./scripts/test:unit.sh"
},
"dependencies": {
"hyphenate-style-name": "1.0.2",
"inline-style-prefixer": "^2.0.5",
"lodash": "^4.17.4",
"tslib": "^1.4.0",
"unitless-css-property": "^1.0.2"
},
"devDependencies": {
"@types/chai": "3.4.34",
"@types/classnames": "0.0.32",
"@types/html-webpack-plugin": "2.11.1",
"@types/lodash": "4.14.50",
"@types/mocha": "2.2.34",
"@types/node": "6.0.52",
"@types/proxyquire": "1.3.27",
"@types/react": "15.0.4",
"@types/react-dom": "0.14.21",
"@types/sinon": "1.16.33",
"@types/sinon-chai": "2.7.27",
"@types/source-map": "^0.5.0",
"@types/tapable": "^0.2.3",
"@types/uglify-js": "^2.6.29",
"@types/webpack": "2.2.4",
"chai": "3.5.0",
"classnames": "2.2.5",
"codecov": "1.0.1",
"html-webpack-plugin": "2.28.0",
"lodash": "4.17.4",
"mocha": "3.2.0",
"mocha-circleci-reporter": "0.0.2",
"nyc": "10.0.0",
"proxyquire": "1.7.11",
"react": "15.4.2",
"react-dom": "15.4.2",
"sinon": "1.17.6",
"sinon-chai": "2.8.0",
"ts-loader": "2.0.0",
"ts-node": "1.7.2",
"tslib": "1.4.0",
"tslint": "4.1.1",
"typescript": "2.1.5",
"webpack": "2.2.0",
"webpack-dev-server": "1.16.2"
},
"typings": "./dist/src/index.d.ts"
}