-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
52 lines (52 loc) · 1.75 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
{
"name": "stylishly-build",
"private": true,
"version": "0.8.0",
"scripts": {
"preversion": "node scripts/version.js $npm_package_version && git add -A .",
"postinstall": "node scripts/install.js",
"publish": "node scripts/publish.js",
"build": "node scripts/build.js",
"build:umd": "webpack --progress",
"clean": "node scripts/clean.js",
"docs": "node scripts/buildDocs.js",
"lint": "eslint scripts packages test/integration && echo \"eslint: no lint errors\"",
"test": "cross-env NODE_ENV=test babel-node test/index.js",
"test:coverage": "cross-env NODE_ENV=test babel-node ./node_modules/istanbul/lib/cli.js cover test/index.js",
"test:watch": "cross-env NODE_ENV=test babel-node test/watch.js"
},
"author": "Nathan Marks <[email protected]> (http://nathanmarks.io)",
"license": "MIT",
"devDependencies": {
"app-module-path": "^1.1.0",
"babel-cli": "^6.7.7",
"babel-eslint": "^6.0.3",
"babel-loader": "^6.2.4",
"babel-plugin-transform-runtime": "^6.7.5",
"babel-preset-es2015": "^6.9.0",
"babel-preset-stage-0": "^6.5.0",
"babel-runtime": "^6.9.2",
"chai": "^3.5.0",
"collect-json": "^1.0.8",
"coveralls": "^2.11.9",
"cross-env": "^1.0.7",
"dmd": "^1.4.1",
"eslint": "^2.8.0",
"eslint-plugin-babel": "^3.2.0",
"eslint-plugin-react": "^5.1.1",
"glob": "^7.0.3",
"istanbul": "^1.0.0-alpha.2",
"jsdoc-parse": "github:nathanmarks/jsdoc-parse#es6-customizations",
"jsdoc-to-markdown": "^1.3.6",
"jsdom": "^9.2.1",
"minimist": "^1.2.0",
"mocha": "^2.4.5",
"mock-require": "^1.3.0",
"nodemon": "^1.9.2",
"rimraf": "^2.5.2",
"semver": "^5.1.0",
"sinon": "^1.17.4",
"webpack": "^2.1.0-beta.13"
},
"dependencies": {}
}