This repository was archived by the owner on Dec 25, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 35
Expand file tree
/
Copy pathpackage.json
More file actions
86 lines (86 loc) · 2.17 KB
/
package.json
File metadata and controls
86 lines (86 loc) · 2.17 KB
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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
{
"name": "purifycss-webpack",
"version": "0.7.0",
"description": "PurifyCSS for webpack",
"main": "./dist",
"scripts": {
"build": "rimraf dist && babel src -d dist",
"build:watch": "npm-watch",
"test:all": "npm run test:coverage && npm run test:lint",
"test": "jest",
"test:coverage": "jest --coverage",
"test:watch": "jest --watch",
"test:lint": "eslint . --ext .js --ignore-path .gitignore --cache",
"preversion": "npm run test:all && npm run build && git commit --allow-empty -am \"Update dist\"",
"postinstall": "node lib/post_install.js"
},
"repository": {
"type": "git",
"url": "https://github.com/webpack-contrib/purifycss-webpack.git"
},
"keywords": [
"webpack",
"uncss",
"plugin",
"purify"
],
"files": [
"dist",
"lib"
],
"jest": {
"collectCoverage": true,
"collectCoverageFrom": "src/**/*.js",
"moduleFileExtensions": [
"js"
],
"moduleDirectories": [
"node_modules"
]
},
"author": "Kenny Tran, Matthew Rourke, Phoebe Li, Kevin \"Ingwie Phoenix\" Ingwersen",
"license": "MIT",
"bugs": {
"url": "https://github.com/webpack-contrib/purifycss-webpack/issues"
},
"homepage": "https://github.com/webpack-contrib/purifycss-webpack",
"peerDependencies": {
"purify-css": ">= 1.0.0 < 2.0.0"
},
"dependencies": {
"ajv": "^4.11.2",
"webpack-sources": "^0.1.4"
},
"devDependencies": {
"babel-cli": "^6.18.0",
"babel-core": "^6.21.0",
"babel-eslint": "^7.1.1",
"babel-jest": "^18.0.0",
"babel-plugin-syntax-object-rest-spread": "^6.13.0",
"babel-plugin-transform-object-rest-spread": "^6.20.2",
"babel-preset-es2015": "^6.18.0",
"eslint": "^3.13.1",
"eslint-config-airbnb": "^14.0.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^3.0.2",
"eslint-plugin-react": "^6.9.0",
"git-prepush-hook": "^1.0.1",
"jest": "^18.1.0",
"npm-watch": "^0.1.8",
"purify-css": "^1.2.2",
"rimraf": "^2.6.1"
},
"pre-push": [
"build",
"test:all"
],
"watch": {
"build": {
"patterns": [
"src"
],
"extensions": "js",
"quiet": false
}
}
}