-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.37 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
{
"name": "happy-thoughts",
"version": "1.1.0",
"description": "Make abusive comments cute by replacing specified words with a random emoji 😸",
"main": "dist/index.js",
"scripts": {
"scripts:watch": "watch 'yarn scripts:build' src",
"scripts:build": "babel src -d dist",
"test": "jest src",
"test:watch": "yarn test --watch",
"dev": "concurrently 'yarn scripts:watch' 'yarn test:watch'",
"build": "yarn scripts:build",
"prepublish": "yarn build",
"release": "np"
},
"babel": {
"presets": [
"latest"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/isthatcentered/sensitive-words.git"
},
"keywords": [
"censor",
"emoji",
"curse",
"insult",
"abuse",
"filter",
"filtering",
"happy",
"thoughts"
],
"author": "Edouard Penin <e.peninb@gmail.com>",
"license": "ISC",
"bugs": {
"url": "https://github.com/isthatcentered/sensitive-words/issues"
},
"homepage": "https://github.com/isthatcentered/sensitive-words#readme",
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-preset-latest": "^6.24.1",
"concurrently": "^3.5.1",
"jest": "^22.1.4",
"np": "^2.18.3",
"watch": "^1.0.2"
}
}