-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
46 lines (46 loc) · 1.17 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
{
"name": "grd",
"version": "1.4.0",
"description": "A UI grid-system for JavaScript applications",
"license": "MIT",
"repository": "esr360/pax5",
"author": {
"name": "Edmund Reed",
"email": "esr360@live.com",
"url": "http://edmundreed.com/"
},
"keywords": [
"css",
"grid",
"flexbox"
],
"main": "dist/pax5.js",
"dependencies": {
"deep-extend": "^0.6.0",
"prop-types": "^15.6.0",
"react": "^16.4.0"
},
"devDependencies": {
"babel-preset-react": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"babel-core": "^6.24.1",
"babel-loader": "^7.1.2",
"babel-preset-env": "^1.7.0",
"babel-register": "^6.26.0",
"eslint": "^4.14.0",
"jsdoc": "^3.5.5",
"jsdom": "^11.0.0",
"jsdom-global": "^3.0.2",
"mocha": "^3.5.3",
"nyc": "^13.0.1",
"stylelint": "^8.4.0",
"webpack": "^3.10.0"
},
"scripts": {
"lint": "eslint './src/js/**/*.js'",
"test": "nyc --require babel-register mocha test/tests.js --require babel-register && nyc report --reporter=lcov",
"docs": "jsdoc src -r -d docs/js",
"js": "webpack",
"compile": "npm run lint && npm test && npm run docs && npm run js"
}
}