This repository has been archived by the owner on Sep 10, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
66 lines (66 loc) · 1.6 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
{
"name": "adonis",
"version": "1.0.2",
"description": "The best of aphrodite and styled-components combined",
"main": "build/adonis.js",
"scripts": {
"build": "rimraf build && webpack",
"build:publish": "rimraf build && webpack && MINIFY=true webpack",
"build:watch": "rimraf build && WATCH=true webpack",
"prestart": "npm run build",
"start": "node bin/main.js",
"test": "mocha test",
"prepublish": "npm run build:publish"
},
"repository": {
"type": "git",
"url": "git://github.com/imgly/adonis.git"
},
"standard": {
"globals": [
"describe",
"it",
"before",
"beforeEach",
"after",
"afterEach"
]
},
"keywords": [
"aphrodite",
"react",
"css",
"css-in-js",
"cssinjs"
],
"author": "Sascha Gehlich <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/imgly/adonis/issues"
},
"homepage": "https://github.com/imgly/adonis#readme",
"devDependencies": {
"aphrodite": "^1.2.5",
"babel-core": "^6.26.0",
"babel-loader": "^6.2.1",
"babel-preset-es2015": "^6.3.13",
"babel-preset-react": "^6.22.0",
"enzyme": "^2.7.1",
"jsdom": "^9.11.0",
"mocha": "^2.4.5",
"mocha-jsdom": "^1.1.0",
"mocha-sinon": "^1.1.6",
"preprocess-loader": "^0.2.0",
"prop-types": "^15.6.1",
"react-addons-test-utils": "^15.6.2",
"rimraf": "^2.6.2",
"should": "^11.1.2",
"should-sinon": "^0.0.5",
"sinon": "^1.17.7",
"webpack": "^1.12.12"
},
"dependencies": {
"react": "^16.3.1",
"react-dom": "^16.3.1"
}
}