-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
47 lines (47 loc) · 1.18 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
{
"name": "postcss-adaptive",
"version": "0.5.0",
"description": "A postcss plugin that calculates and generates adaptive css code, such as rem and 0.5px borders for retina devices",
"main": "index.js",
"author": "songsiqi <[email protected]>",
"repository": {
"type": "git",
"url": "https://github.com/songsiqi/postcss-adaptive.git"
},
"license": "MIT",
"keywords": [
"postcss",
"rem",
"hairline"
],
"scripts": {
"test:babel": "babel src --out-dir lib",
"test:lint": "eslint src",
"test:mocha": "mocha",
"test": "npm run test:babel && npm run test:lint && npm run test:mocha",
"cover": "isparta cover --report text --report lcov _mocha -- --reporter dot"
},
"dependencies": {
"css": "^2.2.1",
"postcss": "^6.0.8"
},
"devDependencies": {
"babel-cli": "^6.10.1",
"babel-core": "^6.10.4",
"babel-loader": "^6.2.4",
"babel-plugin-transform-object-assign": "^6.8.0",
"babel-preset-es2015": "^6.9.0",
"chai": "^3.5.0",
"eslint": "^3.5.0",
"isparta": "~4.0.0",
"mocha": "^3.0.2"
},
"babel": {
"presets": [
"es2015"
],
"plugins": [
"transform-object-assign"
]
}
}