-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.23 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
{
"name": "headline-quotes",
"version": "2.1.1",
"description": "Smart quotes for headlines! Follows the AP Style Guide",
"main": "dist/index.js",
"jsnext:main": "src/index.js",
"scripts": {
"test": "node_modules/.bin/mocha --compilers js:babel-register test.js",
"build-es5": "node_modules/.bin/babel src --out-dir dist",
"clean": "rimraf dist && mkdirp dist",
"build": "npm run clean && npm run build-es5",
"prepublish": "npm run build"
},
"babel": {
"presets": [
"es2015"
],
"plugins": [
"add-module-exports"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/yoshokatana/headline-quotes.git"
},
"keywords": [
"quotes",
"smart-quotes",
"typography"
],
"author": "Nelson Pecora",
"license": "MIT",
"bugs": {
"url": "https://github.com/yoshokatana/headline-quotes/issues"
},
"homepage": "https://github.com/yoshokatana/headline-quotes#readme",
"devDependencies": {
"babel": "^6.5.2",
"babel-cli": "^6.7.7",
"babel-plugin-add-module-exports": "^1.0.2",
"babel-preset-es2015": "^6.6.0",
"babel-register": "^6.7.2",
"chai": "^4.0.2",
"mkdirp": "^1.0.0",
"mocha": "^7.0.1",
"rimraf": "^3.0.0"
}
}