forked from Recidvst/scrambling-letters
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
72 lines (72 loc) · 2.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
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
{
"name": "scrambling-letters",
"version": "1.6.1",
"description": "A lightweight javascript library for scrambling letters within a piece of text, giving a nice decoding effect.",
"keywords": [
"scramble",
"scrambler",
"scrambling-letters",
"scrambling letters",
"scrambling text",
"text",
"random letters",
"javascript",
"npm"
],
"browser": "example.js",
"scripts": {
"check": "echo 'npm OK'",
"clean": "rimraf dist",
"test": "cross-env BABEL_ENV=test NODE_ENV=test nyc mocha test/unit --require @babel/register",
"coverage": "cross-env BABEL_ENV=test NODE_ENV=test nyc report --reporter=text-lcov | coveralls",
"e2e": "cross-env BABEL_ENV=test node nightwatch.js test/e2e",
"lint": "eslint js/**/*.js",
"styles": "node-sass scss/example.scss -o dist/css & cleancss dist/css/example.css -o dist/css/example.min.css",
"example": "babel js/example.js --out-file dist/example.js",
"prebuild": "npm run clean",
"build": "cross-env BABEL_ENV=production NODE_ENV=production rollup -c && npm run styles && npm run example"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Recidvst/scrambling-letters.git"
},
"homepage": "https://github.com/Recidvst/scrambling-lettersr#readme",
"author": "Chris Snowden <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/Recidvst/scrambling-letters/issues"
},
"devDependencies": {
"@babel/cli": "^7.4.4",
"@babel/core": "^7.4.4",
"@babel/preset-env": "^7.4.4",
"@babel/register": "^7.4.4",
"autoprefixer": "^9.5.1",
"babel-plugin-add-module-exports": "^1.0.2",
"bootstrap-grid": "^2.0.1",
"chai": "*",
"chromedriver": "^74.0.0",
"clean-css-cli": "^4.3.0",
"coveralls": "^3.0.3",
"cross-env": "^5.2.0",
"eslint": "^5.16.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-plugin-import": "^2.16.0",
"eslint-plugin-jsx-a11y": "^6.2.1",
"geckodriver": "^1.16.2",
"jsdom": "14.0.0",
"jsdom-global": "3.0.2",
"mocha": "*",
"mocha-lcov-reporter": "^1.3.0",
"nightwatch": "^1.0.19",
"node-sass": "^4.12.0",
"nyc": "^13.3.0",
"rimraf": "^2.6.3",
"rollup": "^1.11.3",
"rollup-plugin-babel": "^4.3.2",
"rollup-plugin-eslint": "^5.1.0",
"rollup-plugin-node-resolve": "^4.2.3",
"rollup-plugin-uglify-es": "0.0.1",
"uglify-js": "^3.5.9"
}
}