-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
37 lines (37 loc) · 1.02 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
{
"name": "stylerjs",
"version": "1.4.0",
"description": "This is a simple JavaScript function which allows you to get and set CSS styles on DOM elements with ease.",
"main": "lib/index.js",
"scripts": {
"build": "babel --presets es2015,stage-0 -d lib/ src/",
"prepublish": "npm run build",
"test": "mocha --compilers js:babel-register",
"test:watch": "mocha --compilers js:babel-register --watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tjcafferkey/stylerjs.git"
},
"keywords": [
"css",
"dom",
"javascript"
],
"author": "Tom Cafferkey",
"license": "ISC",
"bugs": {
"url": "https://github.com/tjcafferkey/stylerjs/issues"
},
"homepage": "https://github.com/tjcafferkey/stylerjs#readme",
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"babel-register": "^6.24.1",
"chai": "^4.0.2",
"jsdom": "^11.0.0",
"jsdom-global": "^3.0.2",
"mocha": "^3.4.2"
}
}