-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
38 lines (38 loc) · 1.38 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
{
"name": "theme-it",
"version": "1.0.4",
"main": "dist/theme-it.js",
"module": "es/theme-it.js",
"bin": {
"theme-it": "lib/cli.js"
},
"repository": "[email protected]:mmckeaveney/theme-it.git",
"author": "Martin McKeaveney <[email protected]>",
"license": "MIT",
"scripts": {
"build:minified": "NODE_ENV=production rollup -c rollup.config.js",
"clean": "rimraf dist && rimraf lib",
"dev": "parcel DEV_ONLY/index.html",
"prepublishOnly": "npm run prepublish:compile",
"prepublish:compile": "npm run clean && npm run transpile && npm run build:minified",
"test": "jest --ci --colors --verbose -c=jest.config.json -b",
"test:update": "jest --colors --ci --verbose --watch -b -u -c=jest.config.json",
"test:watch": "jest --colors --ci --verbose --watch -b -c=jest.config.json",
"transpile": "babel src --out-dir lib --copy-files",
"contributors:add": "all-contributors add",
"contributors:generate": "all-contributors generate",
"contributors:check": "all-contributors check"
},
"devDependencies": {
"all-contributors-cli": "^4.10.1",
"babel-cli": "^6.26.0",
"babel-plugin-external-helpers": "^6.22.0",
"babel-preset-env": "^1.6.1",
"benchmark": "^2.1.4",
"jest": "^22.0.4",
"parcel-bundler": "^1.3.0",
"rollup": "^0.60.7",
"rollup-plugin-babel": "^3.0.4",
"rollup-plugin-uglify-es": "^0.0.1"
}
}