-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.91 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.91 KB
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
{
"name": "nativetable",
"version": "1.3.0",
"description": "Create and use dynamics HTML tables with native JS",
"repository": "https://github.com/Mindsers/nativetable",
"main": "dist/nativetable.min.js",
"types": "dist/nativetable.d.ts",
"scripts": {
"build:js": "rollup -c",
"build:clean": "rm -rf dist",
"build:types": "cp src/nativetable/nativetable.d.ts dist/nativetable.d.ts",
"build:dev": "NODE_ENV=development npm run build:clean && npm run build:js -- --sourcemap -w",
"build:prod": "NODE_ENV=production npm run build:clean && npm run build:js && npm run build:types",
"build": "npm run build:prod",
"test:coveralls": "npm run test:coverage && nyc report --reporter=text-lcov | coveralls",
"test:coverage": "NODE_ENV=test nyc --require @babel/register mocha",
"test:unit": "mocha -r @babel/register",
"test:lint": "eslint ./src",
"test:clean": "rm -rf coverage",
"test": "npm run test:clean && npm run test:coveralls"
},
"keywords": [
"table",
"filter"
],
"author": "Nathanael CHERRIER <https://github.com/Mindsers>",
"license": "MIT",
"devDependencies": {
"@babel/core": "7.12.10",
"@babel/preset-env": "7.12.11",
"@babel/register": "7.12.10",
"babel-plugin-istanbul": "6.0.0",
"chai": "4.2.0",
"chai-spies": "1.0.0",
"coveralls": "3.1.0",
"eslint": "7.18.0",
"eslint-config-standard": "16.0.2",
"eslint-plugin-import": "2.22.1",
"eslint-plugin-node": "11.1.0",
"eslint-plugin-promise": "4.2.1",
"eslint-plugin-standard": "4.1.0",
"mocha": "8.2.1",
"mocha-lcov-reporter": "1.3.0",
"nyc": "15.1.0",
"rollup": "2.37.1",
"rollup-plugin-babel": "4.4.0",
"rollup-plugin-uglify": "6.0.4"
},
"dependencies": {},
"nyc": {
"reporter": [
"text",
"lcov",
"html"
],
"require": [
"babel-register"
],
"sourceMap": false,
"instrument": false
}
}