-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.07 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
{
"name": "bem-helper-js",
"version": "1.0.2",
"description": "JavaScript helper for generating BEM class names with chainable API for adding modifiers and elements.",
"main": "lib/index.js",
"jsnext:main": "src/index.js",
"files": [
"lib",
"src",
"README.md",
"package.json"
],
"scripts": {
"compile": "babel -d lib/ src/",
"prepublish": "npm run compile",
"test": "NODE_ENV=test mocha --compilers js:babel/register --recursive",
"test:cov": "babel-node ./node_modules/.bin/isparta cover ./node_modules/.bin/_mocha -- --recursive"
},
"repository": {
"type": "git",
"url": "git+https://github.com/14islands/bem-helper-js.git"
},
"keywords": [
"bem",
"js",
"chainable",
"css",
"classes"
],
"author": "David Lindkvist",
"license": "MIT",
"bugs": {
"url": "https://github.com/14islands/bem-helper-js/issues"
},
"homepage": "https://github.com/14islands/bem-helper-js#readme",
"devDependencies": {
"babel": "^5.8.23",
"chai": "^3.3.0",
"isparta": "^3.1.0",
"mocha": "^2.3.3"
}
}