-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
94 lines (94 loc) · 2.87 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
89
90
91
92
93
94
{
"name": "perdido",
"version": "2.0.1",
"description": "The Lost CSS grid reimagined to work with the JSS system",
"author": {
"name": "Wellington Cordeiro",
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": "[email protected]:wldcordeiro/perdido.git"
},
"keywords": [
"jss",
"plugin",
"grid",
"perdido",
"style",
"stylesheet"
],
"engines": {
"node": ">=4.0.0 <6.0.0"
},
"scripts": {
"all": "npm run lint && npm run test && npm run build",
"clean": "rimraf ./lib/*",
"cover": "istanbul cover test/index.js",
"build": "npm run clean && npm run build:lib && npm run build:max && npm run build:min",
"build:lib": "babel src --out-dir lib",
"build:max": "NODE_ENV=development webpack src/index.js dist/perdido.js",
"build:min": "NODE_ENV=production webpack src/index.js dist/perdido.min.js",
"build:test": "webpack tests/index.js tmp/tests.js",
"lint": "eslint ./src ./tests",
"prepublish": "npm run all && git push --tags",
"test": "./node_modules/karma/bin/karma start --single-run",
"test:watch": "karma start",
"posttest": "[ -z \"$TRAVIS\" ] || codecov",
"codecov": "codecov",
"bench": "BENCHMARK=true npm run test"
},
"license": "MIT",
"main": "./lib/index.js",
"devDependencies": {
"babel-cli": "^6.9.0",
"babel-core": "^6.9.1",
"babel-eslint": "^6.0.4",
"babel-loader": "^6.2.4",
"babel-plugin-transform-inline-environment-variables": "^6.8.0",
"babel-plugin-transform-runtime": "^6.9.0",
"babel-polyfill": "^6.9.1",
"babel-preset-es2015": "^6.9.0",
"babel-preset-react": "^6.5.0",
"babel-preset-stage-0": "^6.5.0",
"chai": "^3.5.0",
"codecov": "^1.0.1",
"es5-shim": "4.5.8",
"eslint": "^2.11.1",
"eslint-config-airbnb": "^8.0.0",
"eslint-config-jss": "^1.1.0",
"eslint-plugin-import": "^1.8.1",
"eslint-plugin-jsx-a11y": "^1.3.0",
"eslint-plugin-react": "^5.1.1",
"expect.js": "^0.3.1",
"istanbul": "^0.4.3",
"jss": "^3.11.1",
"jss-camel-case": "^1.1.0",
"jss-default-unit": "^2.2.0",
"jss-extend": "^1.2.1",
"jss-nested": "^1.0.3",
"jss-vendor-prefixer": "^2.0.0",
"karma": "^0.13.22",
"karma-browserstack-launcher": "^1.0.1",
"karma-chrome-launcher": "^1.0.1",
"karma-coverage": "^1.0.0",
"karma-firefox-launcher": "^1.0.0",
"karma-mocha": "^1.0.1",
"karma-mocha-reporter": "^2.0.3",
"karma-safari-launcher": "^1.0.0",
"karma-sourcemap-loader": "^0.3.7",
"karma-webpack": "^1.7.0",
"mocha": "^2.5.3",
"rimraf": "^2.5.2",
"webpack": "^1.13.1"
},
"dependencies": {
"jss": "^3.11.1",
"jss-extend": "^1.2.1",
"jss-nested": "^1.0.3",
"jss-camel-case": "^1.1.0",
"jss-default-unit": "^2.2.0",
"jss-vendor-prefixer": "^2.0.0"
},
"tonicExampleFilename": "tonic-example.js"
}