forked from andrejewski/periodic-table
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 881 Bytes
/
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
{
"name": "periodic-table",
"description": "periodic elements data",
"version": "0.0.8",
"author": "Chris Andrejewski <[email protected]>",
"bugs": {
"url": "https://github.com/andrejewski/periodic-table/issues"
},
"devDependencies": {
"ava": "^0.21.0",
"csvtojson": "^1.1.7",
"fixpack": "^2.3.1",
"standard": "^10.0.3"
},
"files": [
"data.csv",
"data.json",
"util.js"
],
"homepage": "https://github.com/andrejewski/periodic-table",
"keywords": [
"data",
"elements",
"periodic",
"table"
],
"license": "ISC",
"main": "index.js",
"repository": {
"type": "git",
"url": "https://github.com/andrejewski/periodic-table.git"
},
"scripts": {
"build": "csvtojson data.csv > data.json",
"prepublishOnly": "npm run build",
"test": "fixpack && standard --fix && ava"
}
}