-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.24 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
{
"name": "extract-tags",
"version": "0.3.0",
"description": "Babel plugin to extracts tagged template literals to file. Files can be loaded by webpack.",
"files": [
"lib",
"index.js",
"babel-plugin.js",
"css.js",
"css-babel-plugin.js"
],
"dependencies": {
"mkdirp": "^0.5.1"
},
"devDependencies": {
"babel-cli": "^6.24.0",
"babel-core": "^6.24.0",
"babel-plugin-transform-object-rest-spread": "^6.23.0",
"babel-preset-es2015": "^6.24.0",
"babel-register": "^6.24.0",
"chokidar-cli": "^1.2.0",
"rimraf": "^2.6.1",
"tap-diff": "^0.1.1",
"tape": "^4.6.3"
},
"scripts": {
"clean": "rimraf lib",
"build": "babel src -d lib",
"pretest": "rimraf output test/**/*_tag*.*",
"test": "tape -r babel-register test | tap-diff",
"watch": "chokidar src test -i test/output -i test/**/*_tag*.* -c \"npm run test\"",
"prepublish": "npm run clean && npm run build"
},
"author": "Harm Boschloo",
"repository": {
"type": "git",
"url": "git://github.com/harmboschloo/extract-tags.git"
},
"homepage": "https://github.com/harmboschloo/extract-tags",
"keywords": [
"babel plugin",
"tagged template literals",
"webpack",
"css"
],
"license": "MIT"
}