-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
35 lines (35 loc) · 1.1 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
{
"name": "css-object-loader",
"version": "0.0.7",
"author": "pl12133",
"description": "Webpack loader to load CSS into a selector object with camelCased properties",
"main": "src/index.js",
"scripts": {
"lint": "./node_modules/.bin/eslint src test",
"lint:fix": "./node_modules/.bin/eslint src test --fix",
"test": "./node_modules/.bin/mocha",
"test:cov": "node ./node_modules/.bin/istanbul cover --root src/ ./node_modules/.bin/_mocha",
"test:coveralls": "cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js",
"prepublish": "npm run lint && npm run test:cov"
},
"repository": {
"type": "git",
"url": "https://github.com/pl12133/css-object-loader"
},
"license": "MIT",
"dependencies": {
"camelcase": "^2.1.1",
"css": "^2.2.1"
},
"devDependencies": {
"chai": "^3.5.0",
"coveralls": "^2.11.9",
"eslint": "^2.9.0",
"eslint-config-semistandard": "^6.0.1",
"eslint-config-standard": "^5.2.0",
"eslint-plugin-promise": "^1.1.0",
"eslint-plugin-standard": "^1.3.2",
"istanbul": "^0.4.3",
"mocha": "^2.4.5"
}
}