-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.54 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
{
"name": "pxrem",
"version": "1.0.0",
"description": "Transforming css from px to rem",
"main": "index.js",
"scripts": {
"dev": "rm -rf lib && node node_modules/babel-cli/bin/babel src -d lib -D -w",
"test": "cross-env NODE_ENV=testing node_modules/.bin/nyc --reporter lcov --reporter text --report-dir test/coverage --require babel-core/register node_modules/.bin/mocha test/*.spec.js && rm -rf .nyc_output",
"coverage": "cat test/coverage/lcov.info | node_modules/coveralls/bin/coveralls.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/cupools/pxrem.git"
},
"keywords": [
"px",
"rem",
"postcss",
"css",
"style"
],
"author": "liyh <cupools@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/cupools/pxrem/issues"
},
"engine": {
"node": ">=4.0.0"
},
"homepage": "https://github.com/cupools/pxrem#readme",
"dependencies": {
"babel-runtime": "^6.11.6",
"checkin": "0.0.1",
"postcss": "^5.2.4"
},
"devDependencies": {
"babel-cli": "^6.14.0",
"babel-core": "^6.17.0",
"babel-eslint": "^7.1.1",
"babel-plugin-transform-runtime": "^6.15.0",
"babel-preset-es2015": "^6.14.0",
"babel-preset-stage-2": "^6.13.0",
"chai": "^3.5.0",
"chai-as-promised": "^6.0.0",
"chai-css": "0.0.3",
"coveralls": "^2.11.14",
"cross-env": "^2.0.1",
"eslint": "^3.7.1",
"eslint-config-airbnb-base": "^8.0.0",
"eslint-plugin-import": "^1.16.0",
"mocha": "^3.0.2",
"nock": "^8.0.0",
"nyc": "^8.3.0"
}
}