-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
79 lines (79 loc) · 2.62 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
73
74
75
76
77
78
79
{
"name": "scrambling-letters",
"version": "1.6.5",
"main": "dist/scrambler.cjs.js",
"module": "dist/scrambler.esm.js",
"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=lcov",
"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",
"docs:serve": "docsify serve ./docs",
"package:pack": "npm pack --dry-run",
"package:minor": "npm version minor",
"package:patch": "npm version patch"
},
"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.23.0",
"@babel/core": "7.23.2",
"@babel/preset-env": "7.23.2",
"@babel/register": "7.22.15",
"@rollup/plugin-babel": "6.0.4",
"@rollup/plugin-node-resolve": "15.2.3",
"autoprefixer": "10.4.16",
"babel-plugin-add-module-exports": "1.0.4",
"bootstrap-grid": "3.0.1",
"chai": "*",
"chromedriver": "119.0.0",
"clean-css-cli": "5.6.2",
"coveralls": "3.1.1",
"cross-env": "7.0.3",
"eslint": "8.52.0",
"eslint-config-airbnb": "19.0.4",
"eslint-plugin-import": "2.29.0",
"eslint-plugin-jsx-a11y": "6.8.0",
"geckodriver": "4.2.1",
"jsdom": "22.1.0",
"jsdom-global": "3.0.2",
"mocha": "*",
"mocha-lcov-reporter": "1.3.0",
"nightwatch": "3.2.1",
"node-sass": "9.0.0",
"npm-check-updates": "16.14.6",
"nyc": "15.1.0",
"rimraf": "5.0.5",
"rollup": "4.2.0",
"rollup-plugin-eslint": "7.0.0",
"rollup-plugin-uglify-es": "0.0.1",
"uglify-js": "3.17.4"
}
}