This repository has been archived by the owner on Sep 3, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 108
/
package.json
88 lines (88 loc) · 2.69 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
{
"version": "2.1.7",
"name": "titon-toolkit",
"description": "A collection of extensible React components for the responsive and mobile web.",
"keywords": [
"titon",
"toolkit",
"css",
"sass",
"scss",
"javascript",
"react",
"aesthetic",
"ui",
"interface",
"framework",
"bootstrap",
"modular",
"component",
"responsive",
"fluid",
"mobile",
"behavior"
],
"copyright": "Copyright 2010-2017, The Titon Project",
"license": "BSD-3-Clause",
"homepage": "http://titon.io",
"author": {
"name": "Miles Johnson",
"url": "http://milesj.me"
},
"bugs": "https://github.com/titon/toolkit/issues",
"repository": "github:titon/toolkit",
"scripts": {
"js": "babel ./src -d ./lib",
"js:lint": "eslint ./src ./tests ./stories",
"css": "node-sass --indent-width 4 --output-style expanded --source-map ./build --importer ./build/tasks/import-scss-index.js ./src/testing/style.scss ./build/titon.css",
"css:lint": "sass-lint --config ./.scsslint.yml",
"css:prefix": "postcss --use autoprefixer --config ./.postcss.json --output ./build/titon.css ./build/titon.css",
"jest": "jest --config ./jest.json",
"coverage": "yarn run jest -- --coverage",
"build": "yarn run js && yarn run css && yarn run css:prefix",
"lint": "yarn run js:lint && yarn run css:lint",
"flow": "flow check",
"pretest": "yarn run lint",
"test": "yarn run jest",
"posttest": "yarn run flow",
"storybook": "start-storybook -p 9001 -c ./stories -s ./stories"
},
"dependencies": {
"airbnb-prop-types": "^2.5.3",
"lodash": "^4.17.0",
"prop-types": "^15.5.8"
},
"peerDependencies": {
"aesthetic": "^1.0.0",
"react": "^15.5.0",
"react-motion": "^0.4.7"
},
"devDependencies": {
"@kadira/storybook": "^2.35.3",
"aesthetic": "^1.3.0-rc.1",
"babel-cli": "^6.24.1",
"babel-eslint": "^7.2.3",
"babel-jest": "^19.0.0",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-plugin-transform-export-extensions": "^6.22.0",
"babel-plugin-transform-flow-comments": "^6.22.0",
"babel-preset-latest": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-2": "^6.24.1",
"enzyme": "^2.8.2",
"eslint": "^3.19.0",
"eslint-config-airbnb": "^14.1.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^4.0.0",
"eslint-plugin-react": "^6.10.3",
"flow-bin": "^0.44.2",
"jest": "^19.0.2",
"node-sass": "^4.5.2",
"react": "^15.5.4",
"react-dom": "^15.5.4",
"react-motion": "^0.4.8",
"react-test-renderer": "^15.5.4",
"sass-lint": "^1.10.2"
}
}