-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
115 lines (115 loc) · 2.32 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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
{
"name": "turtle",
"version": "0.5.12",
"description": "Simulate Turtle Geometry",
"keywords": [
"turtle",
"js",
"logo",
"regular polygon",
"regular star polygon",
"constant velocity helix + golden spiral",
"variable speed helix",
"Koch curve",
"Fractal Tree",
"Sierpinski triangle"
],
"main": "index.js",
"exports": {
".": {
"import": "./index.mjs",
"require": "./index.js"
}
},
"browser": {
"./index.js": "./index.browser.js"
},
"scripts": {
"patch": "git add . && git commit -m:pencil2: && npm version patch && npm publish .",
"cz": "conventional-changelog -p atom -i CHANGELOG.md -s -r 0 && git add . && git status && git cz",
"push": "npm version patch && git push",
"jsdoc": "jsdoc ./README.md --configure ./jsdoc.config.js",
"test": "mocha --recursive tests/",
"cjs2mjs": "rollup -c rollup.config.js"
},
"repository": {
"type": "git",
"url": "git://github.com/kongnet/turtle.git"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"engines": {
"node": ">= 14.0.0"
},
"author": "Kongnet <[email protected]>",
"license": "MIT",
"devDependencies": {
"cz-jt": "^0.1.11"
},
"standard": {
"globals": [
"$",
"describe",
"it",
"define",
"db",
"performance"
],
"ignore": [
"/lib/tpl.js",
"/lib/Snowflake.js"
]
},
"eslintConfig": {
"plugins": [],
"parserOptions": {
"ecmaVersion": "latest",
"sourceType": "module",
"ecmaFeatures": {
"experimentalObjectRestSpread": true,
"jsx": true,
"modules": true
}
},
"env": {
"browser": true,
"node": true,
"es6": true,
"mocha": true
},
"globals": {
"angular": true
},
"rules": {
"no-unused-vars": 1,
"camelcase": 0,
"curly": 2,
"brace-style": [
2,
"1tbs",
{
"allowSingleLine": true
}
],
"quotes": [
1,
"single"
],
"semi": 0,
"no-extra-semi": 1,
"space-infix-ops": 1,
"no-console": 0,
"complexity": [
1,
10
]
},
"extends": "eslint:recommended"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-jt"
}
}
}