This repository has been archived by the owner on Aug 18, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
65 lines (65 loc) · 1.72 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
{
"name": "react-base16-styling",
"version": "0.6.0",
"description": "React styling with base16 color scheme support",
"main": "lib/index.js",
"scripts": {
"build": "npm -s run build-lib && npm -s run build-flow",
"build-lib": "NODE_ENV=production babel src --out-dir lib",
"build-flow": "cp src/*.js.flow lib",
"test": "ava",
"lint": "eslint src",
"preversion": "npm -s run lint && npm -s run test",
"version": "npm run build && git add -A .",
"postversion": "git push",
"prepublish": "npm run build",
"flow": "flow"
},
"repository": {
"type": "git",
"url": "git+https://github.com/alexkuz/react-base16-styling.git"
},
"keywords": [
"react",
"theme",
"base16",
"styling"
],
"author": "Alexander <[email protected]> (http://kuzya.org/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/alexkuz/react-base16-styling/issues"
},
"homepage": "https://github.com/alexkuz/react-base16-styling#readme",
"devDependencies": {
"ava": "^0.24.0",
"babel-cli": "^6.6.5",
"babel-core": "^6.7.4",
"babel-eslint": "^8.0.3",
"babel-plugin-transform-flow-strip-types": "^6.22.0",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-plugin-transform-runtime": "^6.6.0",
"babel-preset-env": "^1.6.1",
"eslint": "^4.13.1",
"eslint-plugin-babel": "^4.1.0",
"eslint-plugin-flowtype": "^2.30.0",
"flow-bin": "^0.61.0",
"pre-commit": "^1.1.3"
},
"dependencies": {
"base16": "^1.0.0",
"lodash.curry": "^4.0.1",
"lodash.flow": "^3.3.0",
"pure-color": "^1.2.0"
},
"pre-commit": [
"lint",
"test"
],
"ava": {
"require": [
"babel-register"
],
"babel": "inherit"
}
}